/* Custom resets and base styles outside of Tailwind */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #2C3E50;
  background-color: #F7FAFC;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #F7FAFC;
}

::-webkit-scrollbar-thumb {
  background: #1FA59A;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #178a80;
}

/* Global Variables */
:root {
  --primary: #1FA59A;
  --secondary: #2C3E50;
  --accent: #3BC6B9;
  --bgsoft: #F7FAFC;
  --text-gray-500: #6b7280;
  --text-gray-600: #4b5563;
  --text-gray-700: #374151;
  --box-shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #1FA59A, #2C3E50);
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.hover-card-up {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-card-up:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgba(44, 62, 80, 0.15);
}

.img-zoom-container {
  overflow: hidden;
}

.img-zoom-container img {
  transition: transform 0.6s ease;
  display: block;
}

.img-zoom-container:hover img {
  transform: scale(1.1);
}

@keyframes bounceSlow {

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

  50% {
    transform: translateY(-10px);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: #178a80;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(31, 165, 154, 0.4);
}

/* --- HEADER --- */
.main-header {
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: var(--box-shadow-soft);
  top: 0;
  left: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header-menu {
    display: flex;
  }
}

.nav-link,
.nav-btn {
  color: var(--secondary);
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  cursor: pointer;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-family: inherit;
}

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

.nav-btn i {
  margin-left: 0.25rem;
  font-size: 0.75rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 12rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: var(--box-shadow-soft);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  transform: translateY(0.5rem);
  z-index: 50;
  padding: 0.5rem 0;
}

.nav-dropdown-menu.nav-menu-lg {
  min-width: 16rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-gray-700);
  transition: all 0.3s;
}

.dropdown-link:hover {
  background-color: var(--bgsoft);
  color: var(--primary);
}

.mobile-menu-trigger {
  display: flex;
  align-items: center;
  height: 100%;
}

@media (min-width: 768px) {
  .mobile-menu-trigger {
    display: none;
  }
}

.btn-icon {
  color: var(--secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
}

.btn-icon i {
  font-size: 1.5rem;
}

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

.mobile-dropdown {
  background: #fff;
  border-top: 1px solid #f3f4f6;
  box-shadow: var(--box-shadow-soft);
  position: absolute;
  width: 100%;
  top: 100%;
  max-height: 80vh;
  overflow-y: auto;
  left: 0;
}

.mobile-dropdown.hidden {
  display: none;
}

@media (min-width: 768px) {
  .mobile-dropdown {
    display: none !important;
  }
}

.mobile-content {
  padding: 0.5rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-link {
  display: block;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary);
  border-radius: 0.375rem;
}

.mobile-link:hover {
  color: var(--primary);
  background: var(--bgsoft);
}

.mobile-group {
  padding: 0.5rem 0.75rem;
}

.mobile-heading {
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary);
  pointer-events: none;
  margin-bottom: 0.5rem;
}

.mobile-subgroup {
  padding-left: 1rem;
  border-left: 2px solid var(--bgsoft);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-sublink {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-gray-600);
}

.mobile-sublink:hover {
  color: var(--primary);
}

.spacer-h20 {
  height: 5rem;
  width: 100%;
  background-color: white;
  position: relative;
  z-index: 40;
}

/* --- FOOTER --- */
.main-footer {
  background-color: #F0F7F9;
  color: var(--text-gray-700);
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: 5rem;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid #f3f4f6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 3rem;
  }
}

.footer-col {
  grid-column: span 1 / span 1;
}

@media (min-width: 768px) {
  .footer-col {
    grid-column: span 4 / span 4;
  }

  .footer-col:nth-child(2) {
    justify-self: center;
  }

  .footer-col:nth-child(3) {
    justify-self: end;
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 4rem;
  width: auto;
  mix-blend-mode: multiply;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-gray-600);
  margin-bottom: 2rem;
  line-height: 1.625;
  padding-right: 1rem;
}

.footer-title {
  font-size: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.footer-links-grid {
  display: grid;
  /* grid-template-columns: repeat(1, minmax(0, 1fr)); */
  gap: 1rem;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  color: var(--text-gray-500);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  text-decoration: none;
}

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

.footer-link i {
  font-size: 10px;
  color: var(--primary);
}

.footer-contact-info {
  color: var(--text-gray-500);
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.625;
  margin: 0;
}

.footer-contact-info p {
  margin: 0;
}

.footer-contact-link {
  color: var(--text-gray-500);
  transition: color 0.3s;
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: var(--text-gray-500);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .footer-social {
    margin-top: 0;
  }
}

.social-label {
  color: var(--text-gray-600);
  font-weight: 500;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  text-decoration: none;
  font-size: 1rem;
}

.social-icon:hover {
  transform: translateY(-4px);
}

.social-fb {
  color: #3b5998;
}

.social-ig {
  color: #f02626;
}

.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.float-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
  position: relative;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.float-btn-wa {
  background-color: #25D366;
  color: #fff;
}

.float-btn-wa i {
  font-size: 1.875rem;
}

.float-btn-call {
  background-color: var(--primary);
  color: #fff;
}

.float-btn-call i {
  font-size: 1.5rem;
}

.float-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 1rem;
  background: #fff;
  color: #1f2937;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateX(1rem);
  pointer-events: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --- SECTION & PAGES BASE --- */
.section-py {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-white {
  background-color: #fff;
}

.section-soft {
  background-color: var(--bgsoft);
}

.section-secondary {
  background-color: var(--secondary);
  color: #fff;
}

.section-relative {
  position: relative;
  overflow: hidden;
}

.section-content-z {
  position: relative;
  z-index: 10;
}

.page-hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-hero {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--secondary);
  z-index: 0;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  /* mix-blend-mode: ; */
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3.75rem;
  }
}

.page-title span {
  color: var(--accent);
}

.page-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 42rem;
  margin: 0 auto;
}

.breadcrumbs {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.breadcrumbs a {
  color: inherit;
  transition: color 0.3s;
  text-decoration: none;
}

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

.breadcrumbs span.current {
  color: #fff;
}

.sec-tagline {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}

.sec-heading {
  font-size: 2.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.25;
  margin-top: 0;
}

@media(min-width: 768px) {
  .sec-heading {
    font-size: 3rem;
  }
}

.sec-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-gray-700);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.sec-desc {
  color: var(--text-gray-600);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  margin-top: 0;
}

.text-center {
  text-align: center;
}

/* Home/Index Overrides */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--secondary);
  height: 75vh;
}

.hero-img-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(44, 62, 80, 0.6) 0%, rgba(44, 62, 80, 0.4) 50%, rgba(44, 62, 80, 0.6) 100%);
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}

.hero-slide .slide-bg {
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.hero-slide.active .slide-bg {
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-max-w {
  max-width: 56rem;
  margin: 0 auto;
}

.hero-tagline {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-heading {
  font-size: 3rem;
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  margin-top: 0;
}

@media(min-width: 768px) {
  .hero-heading {
    font-size: 4.5rem;
  }
}

@media(min-width: 1024px) {
  .hero-heading {
    font-size: 6rem;
  }
}

.hero-desc {
  font-size: 1.25rem;
  color: #f3f4f6;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.625;
  margin-top: 0;
}

@media(min-width: 768px) {
  .hero-desc {
    font-size: 1.5rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

@media(min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-btn-primary {
  background-color: var(--primary);
  color: #fff;
  border-radius: 9999px;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: transform 0.3s;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-primary:hover {
  transform: scale(1.05);
}

.hero-btn-secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 9999px;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-secondary:hover {
  background-color: #fff;
  color: var(--secondary);
}

.hero-dots-container {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hero-dot:hover {
  background-color: #fff;
}

.hero-dot.active {
  background-color: var(--primary);
  width: 2rem;
  border-radius: 1rem;
}

.blob-tr {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: -5rem;
  margin-top: -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background-color: rgba(31, 165, 154, 0.05);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.blob-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: -5rem;
  margin-bottom: -5rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background-color: rgba(59, 198, 185, 0.1);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.check-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(31, 165, 154, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1rem;
}

.check-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.125rem;
  margin: 0 0 0.25rem 0;
}

.check-desc {
  color: var(--text-gray-500);
  font-size: 0.875rem;
  margin: 0;
}

.floating-card-container {
  position: relative;
  z-index: 10;
}

.floating-card-img {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.floating-card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.floating-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(44, 62, 80, 0.6) 0%, transparent 100%);
  z-index: 1;
}

.floating-card {
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--box-shadow-soft);
  display: none;
  width: 16rem;
  z-index: 20;
}

@media (min-width: 768px) {
  .floating-card {
    display: block;
    animation: bounceSlow 3s infinite ease-in-out;
  }
}

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

.fc-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(59, 198, 185, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.fc-label {
  font-size: 0.875rem;
  color: var(--text-gray-500);
  font-weight: 500;
  margin: 0;
}

.fc-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--secondary);
  margin: 0;
}

.course-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #f3f4f6;
  transition: transform 0.4s;
}

.course-img-wrap {
  height: 14rem;
  overflow: hidden;
  position: relative;
}

.course-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}

.course-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-title {
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  line-height: 1.25;
  margin-top: 0;
}

.course-text {
  color: var(--text-gray-600);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0;
}

.course-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s;
  margin-top: auto;
  text-decoration: none;
}

.course-link:hover {
  color: var(--secondary);
}

.course-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.course-link:hover i {
  transform: translateX(4px);
}

.elements-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(31, 165, 154, 0.1);
  transform: skewX(-12deg);
  transform-origin: top right;
  z-index: 0;
}

.elements-heading {
  font-size: 2.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  margin-top: 0;
}

@media (min-width: 768px) {
  .elements-heading {
    font-size: 3rem;
  }
}

.elements-heading span {
  color: var(--accent);
  font-weight: 300;
}

.elements-text {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  margin-top: 0;
}

.elements-quote {
  color: #9ca3af;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  margin-top: 0;
}

.circle-presentation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.circle-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 2rem auto;
}

@media (min-width: 768px) {
  .circle-wrapper {
    width: 450px;
    height: 450px;
  }
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  padding: 1.5rem;
  background: #fff;
  border-radius: 50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  color: var(--primary);
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .center-logo {
    width: 280px;
    height: 280px;
    padding: 2.5rem;
  }
}

.circle-item-btn {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
}

.circle-active-ext,
.circle-item-btn:hover {
  background-color: var(--primary) !important;
  color: white !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
  transform: translate(-50%, -50%) scale(1.1);
  z-index: 25 !important;
}

.circle-inactive-ext {
  background-color: white !important;
  color: var(--secondary) !important;
}

.circle-item-btn i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.feature-card {
  background: var(--bgsoft);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  transition: all 0.3s;
}

.feature-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--box-shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon-wrap {
  background: var(--primary);
  color: #fff;
}

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.feature-text {
  color: var(--text-gray-600);
  margin: 0;
  line-height: 1.5;
  font-size: 1rem;
}

.feature-card-special {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  transition: all 0.3s;
}

.feature-special-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 165, 154, 0.1) 0%, transparent 100%);
  z-index: 0;
}

.feature-special-content {
  position: relative;
  z-index: 10;
}

.feature-icon-special {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(31, 165, 154, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* --- CUSTOM ANIMATIONS --- */
.animate-fade-up {
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

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

.animate-fade-in {
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* --- GALLERY --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.gallery-filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
  border: none;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid transparent;
  transform: translateY(-4px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-filter-btn:not(.active) {
  background-color: #fff;
  color: var(--secondary);
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.masonry-grid {
  column-count: 1;
  column-gap: 1.5rem;
}

@media (min-width: 640px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .masonry-grid {
    column-count: 3;
  }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--box-shadow-soft);
  transition: all 0.3s;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.7s;
}

.masonry-item:hover img {
  transform: scale(1.1);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(44, 62, 80, 0.8) 0%, rgba(44, 62, 80, 0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-overlay span {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: block;
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.contact-info-col {
  grid-column: span 1 / span 1;
}

@media (min-width: 1024px) {
  .contact-info-col {
    grid-column: span 4 / span 4;
  }
}

.contact-form-col {
  grid-column: span 1 / span 1;
}

@media (min-width: 1024px) {
  .contact-form-col {
    grid-column: span 8 / span 8;
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  transition: transform 0.3s;
}

.contact-item:hover .contact-icon-wrap {
  background-color: var(--primary);
  color: #fff;
}

.contact-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-color: var(--bgsoft);
  border: 1px solid #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
  transition: all 0.3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contact-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  margin-top: 0;
}

.contact-text {
  color: var(--text-gray-600);
  line-height: 1.625;
  margin: 0;
}

.contact-link {
  color: var(--text-gray-600);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  margin-top: 0.25rem;
}

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

.contact-form-wrap {
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--box-shadow-soft);
  border: 1px solid #f3f4f6;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-form-wrap {
    padding: 3rem;
  }
}

.form-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: rgba(31, 165, 154, 0.05);
  border-bottom-left-radius: 9999px;
  margin-right: -2rem;
  margin-top: -2rem;
  z-index: 0;
}

.form-title {
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.form-flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .form-flex {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-group {
  position: relative;
  z-index: 10;
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  font-family: inherit;
  font-size: 1rem;
  color: var(--secondary);
  transition: all 0.3s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  background-color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(31, 165, 154, 0.2);
}

.form-textarea {
  resize: none;
}

.form-btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  margin-top: 1rem;
  box-shadow: 0 10px 15px -3px rgba(31, 165, 154, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-btn-submit i {
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.form-btn-submit:hover i {
  transform: translateY(-4px) translateX(4px);
}

.map-container {
  width: 100%;
  height: 500px;
}

.map-iframe {
  border: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  transition: filter 0.7s;
}

.map-container:hover .map-iframe {
  filter: grayscale(0);
}

/* --- GENERIC INTERIOR PAGES --- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.content-card-box {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--box-shadow-soft);
  border: 1px solid #f3f4f6;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}

.content-card-box:hover {
  transform: translateY(-8px);
}

.content-icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  transition: all 0.3s;
}

.icon-primary {
  background-color: rgba(31, 165, 154, 0.1);
  color: var(--primary);
}

.content-card-box:hover .icon-primary {
  background-color: var(--primary);
  color: #fff;
}

.icon-accent {
  background-color: rgba(59, 198, 185, 0.2);
  color: var(--accent);
}

.content-card-box:hover .icon-accent {
  background-color: var(--accent);
  color: #fff;
}

.icon-secondary {
  background-color: rgba(44, 62, 80, 0.1);
  color: var(--secondary);
}

.content-card-box:hover .icon-secondary {
  background-color: var(--secondary);
  color: #fff;
}

.quote-section {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.quote-text {
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.625;
  font-style: italic;
  margin-bottom: 2rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .quote-text {
    font-size: 2.25rem;
  }
}

.quote-author {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(59, 198, 185, 0.5);
  margin-bottom: 1.5rem;
}

.quote-decor {
  position: absolute;
  width: 16rem;
  height: 16rem;
  background-color: #fff;
  opacity: 0.05;
  border-radius: 50%;
}

.quote-decor-1 {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.quote-decor-2 {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.profile-card {
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--box-shadow-soft);
  border: 1px solid #f3f4f6;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .profile-card {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.profile-img-col {
  height: 25rem;
  position: relative;
}

@media (min-width: 768px) {
  .profile-img-col {
    grid-column: span 5 / span 5;
    height: auto;
  }
}

.profile-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-content-col {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .profile-content-col {
    grid-column: span 7 / span 7;
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .profile-content-col {
    padding: 4rem;
  }
}

/* Stats Counter */
.stats-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.stats-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(white 2px, transparent 2px);
  background-size: 30px 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stat-item {
  padding: 0 1rem;
  position: relative;
}

@media (min-width: 1024px) {
  .stat-item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.stat-number-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07));
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .stat-number-wrap {
    font-size: 4.5rem;
  }
}

.stat-plus {
  color: var(--accent);
  font-size: 2.25rem;
  margin-left: 0.25rem;
}

@media (min-width: 1024px) {
  .stat-plus {
    font-size: 3.75rem;
  }
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* Custom Content grids & special items */
.grid-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.steam-card {
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
  border: 1px solid #f3f4f6;
  position: relative;
  overflow: hidden;
}

.steam-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-soft);
}

.steam-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  border-bottom-left-radius: 9999px;
  margin-right: -2rem;
  margin-top: -2rem;
  transition: transform 0.4s;
  z-index: 0;
}

.steam-card:hover .steam-card-bg {
  transform: scale(1.1);
}

.steam-letter {
  font-size: 3.75rem;
  font-weight: 900;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: #f3f4f6;
  z-index: 0;
  transition: color 0.4s;
  line-height: 1;
  margin: 0;
}

.steam-icon-box {
  position: relative;
  z-index: 10;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s;
}

.sc-title {
  position: relative;
  z-index: 10;
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.sc-text {
  position: relative;
  z-index: 10;
  color: var(--text-gray-600);
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
}

/* Course Plans & Audience Cards */
.course-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.course-item {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .course-item {
    flex-direction: row;
  }
}

.course-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .course-content {
    width: 60%;
  }
}

.course-info-card {
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--box-shadow-soft);
  padding: 2rem;
  border: 1px solid #f9fafb;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

@media (min-width: 768px) {
  .course-info-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .course-info-card {
    width: 40%;
  }
}

.course-info-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.course-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.info-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 0.25rem 0;
}

.info-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
  margin: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.audience-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 2.5rem;
  padding: 2rem;
  box-shadow: var(--box-shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(31, 165, 154, 0.1);
}

.audience-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.5s;
}

.audience-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  transition: color 0.3s;
  margin-top: 0;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-gray-600);
}

.audience-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  margin-right: 0.75rem;
}

.audience-decor-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.375rem;
  transition: width 0.7s;
}

.audience-card:hover .audience-decor-bar {
  width: 100%;
}

.enroll-btn {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background-color: var(--secondary);
  color: #fff;
  border-radius: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.enroll-btn:hover {
  background-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(31, 165, 154, 0.3);
}

/* specific colors for dynamic steam / audience cards */
.theme-primary .steam-card-bg {
  background-color: rgba(31, 165, 154, 0.05);
}

.theme-primary:hover .steam-letter {
  color: rgba(31, 165, 154, 0.3);
}

.theme-primary .steam-icon-box {
  background-color: rgba(31, 165, 154, 0.1);
  color: var(--primary);
}

.theme-primary:hover .steam-icon-box {
  background-color: var(--primary);
  color: #fff;
}

.theme-primary:hover .audience-title {
  color: var(--primary);
}

.theme-primary .audience-icon {
  background-color: rgba(31, 165, 154, 0.1);
  color: var(--primary);
}

.theme-primary:hover .audience-icon {
  background-color: var(--primary);
  color: #fff;
}

.theme-primary .audience-check {
  background-color: rgba(31, 165, 154, 0.1);
  color: var(--primary);
}

.theme-primary .audience-decor-bar {
  background-color: var(--primary);
}

.theme-accent .steam-card-bg {
  background-color: rgba(59, 198, 185, 0.05);
}

.theme-accent:hover .steam-letter {
  color: rgba(59, 198, 185, 0.3);
}

.theme-accent .steam-icon-box {
  background-color: rgba(59, 198, 185, 0.1);
  color: var(--accent);
}

.theme-accent:hover .steam-icon-box {
  background-color: var(--accent);
  color: #fff;
}

.theme-accent:hover .audience-title {
  color: var(--accent);
}

.theme-accent .audience-icon {
  background-color: rgba(59, 198, 185, 0.1);
  color: var(--accent);
}

.theme-accent:hover .audience-icon {
  background-color: var(--accent);
  color: #fff;
}

.theme-accent .audience-check {
  background-color: rgba(59, 198, 185, 0.1);
  color: var(--accent);
}

.theme-accent .audience-decor-bar {
  background-color: var(--accent);
}

.theme-secondary .steam-card-bg {
  background-color: rgba(44, 62, 80, 0.05);
}

.theme-secondary:hover .steam-letter {
  color: rgba(44, 62, 80, 0.3);
}

.theme-secondary .steam-icon-box {
  background-color: rgba(44, 62, 80, 0.1);
  color: var(--secondary);
}

.theme-secondary:hover .steam-icon-box {
  background-color: var(--secondary);
  color: #fff;
}

.theme-secondary:hover .audience-title {
  color: var(--secondary);
}

.theme-secondary .audience-icon {
  background-color: rgba(44, 62, 80, 0.1);
  color: var(--secondary);
}

.theme-secondary:hover .audience-icon {
  background-color: var(--secondary);
  color: #fff;
}

.theme-secondary .audience-check {
  background-color: rgba(44, 62, 80, 0.1);
  color: var(--secondary);
}

.theme-secondary .audience-decor-bar {
  background-color: var(--secondary);
}

.theme-pink .steam-card-bg {
  background-color: rgba(236, 72, 153, 0.05);
}

.theme-pink:hover .steam-letter {
  color: rgba(236, 72, 153, 0.3);
}

.theme-pink .steam-icon-box {
  background-color: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}

.theme-pink:hover .steam-icon-box {
  background-color: #ec4899;
  color: #fff;
}

.theme-blue .steam-card-bg {
  background-color: rgba(59, 130, 246, 0.05);
}

.theme-blue:hover .steam-letter {
  color: rgba(59, 130, 246, 0.3);
}

.theme-blue .steam-icon-box {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.theme-blue:hover .steam-icon-box {
  background-color: #3b82f6;
  color: #fff;
}

.module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.module-item {
  background: var(--bgsoft);
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid #f3f4f6;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  cursor: pointer;
}

.module-item:hover {
  background: #fff;
  border-color: rgba(31, 165, 154, 0.2);
  box-shadow: 0 20px 25px -5px rgba(31, 165, 154, 0.05);
}

.module-num {
  color: rgba(31, 165, 154, 0.4);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  display: block;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.module-item:hover .module-num {
  color: var(--primary);
}

.module-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.25;
  transition: color 0.3s;
  margin: 0;
}

.module-item:hover .module-title {
  color: var(--primary);
}

.module-bg {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 6rem;
  height: 6rem;
  background: rgba(31, 165, 154, 0.05);
  border-radius: 50%;
  transition: transform 0.7s;
  z-index: 0;
}

.module-item:hover .module-bg {
  transform: scale(1.5);
}