﻿@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-primary: #000000;
  --bg-secondary: #071311;
  --bg-panel: rgba(255, 255, 255, 0.03);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.76);
  --text-muted: #66FCF1;
  --border-subtle: rgba(102, 252, 241, 0.28);
  --border-faint: rgba(102, 252, 241, 0.14);
  --accent: #66FCF1;
  --accent-strong: #66FCF1;
  --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.42);
  --container-width: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000000;
  color: var(--text-primary);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 48px), var(--container-width));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 2;
  padding: 18px 0 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 8px 0 0;
}

.site-brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(102, 252, 241, 0.08));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-primary);
}

.site-nav a[aria-current="page"] {
  color: var(--text-primary);
  text-shadow: 0 0 12px rgba(102, 252, 241, 0.18);
}

.hero-section {
  margin-top: -18px;
  padding: 92px 0 118px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(76px, 8vw, 120px);
}

.hero-copy {
  max-width: 760px;
  padding-top: 12px;
}

.hero-eyebrow {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 64px;
  line-height: 1.06;
  max-width: 560px;
  letter-spacing: -0.8px;
  margin: 0;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 52px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 198px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, rgba(102, 252, 241, 0.2), rgba(102, 252, 241, 0.14));
  border-color: rgba(102, 252, 241, 0.56);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(102, 252, 241, 0.14);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(180deg, rgba(102, 252, 241, 0.94), rgba(102, 252, 241, 0.82));
  border-color: rgba(102, 252, 241, 0.72);
  color: #041412;
  box-shadow: 0 22px 48px rgba(102, 252, 241, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.01);
  border-color: rgba(102, 252, 241, 0.18);
  color: rgba(255, 255, 255, 0.82);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(102, 252, 241, 0.34);
  background: rgba(102, 252, 241, 0.05);
  color: var(--text-primary);
}

.premium-btn {
  position: relative;
  overflow: hidden;
}

.premium-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
}

.premium-btn:hover::before {
  left: 125%;
  transition: 0.8s ease;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo img {
  width: 320px;
  height: auto;
  animation: heartbeatSoft 2.4s ease-in-out 3;
  transition: transform 0.4s ease;
}

.hero-logo img:hover {
  animation: none;
  transform: rotate(8deg) scale(1.03);
}

.booking-page {
  background: #000000;
}

.booking-section {
  padding: 88px 0 120px;
}

.booking-shell {
  display: grid;
  gap: 36px;
}

.booking-intro {
  max-width: 980px;
  margin: 0 auto 40px;
  padding: 24px 20px 0;
  text-align: center;
}

.booking-title {
  margin: 0;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.2;
  color: #ffffff;
}

.booking-divider {
  width: 72px;
  height: 2px;
  margin: 18px auto 22px;
  background: #66FCF1;
  transform: scaleX(0);
  transform-origin: center;
  animation: dividerReveal 1s ease forwards;
}

.booking-description {
  margin: 0 auto;
  max-width: 860px;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
  opacity: 0;
  transform: translateY(8px);
  animation: bookingFadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

.booking-card {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: clamp(4px, 0.8vw, 10px);
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.booking-card .tidycal-embed {
  min-height: 760px;
  width: 100%;
}

@media (max-width: 860px) {
  .site-header {
    padding-top: 20px;
  }

  .header-inner {
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .hero-section {
    margin-top: -12px;
    padding: 64px 0 84px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    max-width: none;
    padding-top: 0;
  }

  .hero-visual {
    order: -1;
  }

  .booking-section {
    padding: 64px 0 88px;
  }

  .booking-card .tidycal-embed {
    min-height: 680px;
  }
}

@media (max-width: 768px) {
  .booking-intro {
    padding: 20px 16px 0;
    margin-bottom: 32px;
  }

  .booking-title {
    font-size: 28px;
  }

  .booking-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .booking-divider {
    width: 60px;
    margin: 14px auto 16px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 32px), var(--container-width));
  }

  .site-brand img {
    width: 62px;
    height: 62px;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
  }

  .hero-title {
    max-width: 100%;
    font-size: 48px;
    line-height: 1.08;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-logo img {
    width: 260px;
  }

  .booking-card {
    padding: 0;
    border-radius: 0;
  }

  .booking-card .tidycal-embed {
    min-height: 620px;
  }
}
@keyframes heartbeatSoft {
  0% { transform: scale(1); }
  40% { transform: scale(1.015); }
  60% { transform: scale(1.01); }
  100% { transform: scale(1); }
}

@keyframes bookingFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dividerReveal {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 0.9;
  }
}

.premium-hero {
  position: relative;
  min-height: 100vh;
  background: url("../images/premium-bg.png") no-repeat center right;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 20px;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 0;
}

.premium-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  text-align: center;
}

.premium-title {
  margin: 0;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: #ffffff;
}

.premium-divider {
  width: min(360px, 82%);
  height: 1px;
  margin: 14px auto 20px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0.95;
  animation: premiumDividerReveal 1.2s ease forwards;
}

.premium-slogan {
  margin: 0 0 46px;
  color: #66FCF1;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
}

.premium-slogan span {
  opacity: 0;
  display: inline-block;
  margin-right: 6px;
  animation: fadeWord 0.8s ease forwards;
}

.premium-slogan span:nth-child(1) { animation-delay: 0.18s; }
.premium-slogan span:nth-child(2) { animation-delay: 0.34s; }
.premium-slogan span:nth-child(3) { animation-delay: 0.50s; }
.premium-slogan span:nth-child(4) { animation-delay: 0.66s; }
.premium-slogan span:nth-child(5) { animation-delay: 0.82s; }
.premium-slogan span:nth-child(6) { animation-delay: 0.98s; }
.premium-slogan span:nth-child(7) { animation-delay: 1.14s; }

.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(102, 252, 241, 0.22);
  padding: 30px 24px 28px;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(12px);
  animation: cardFade 0.85s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.25s; }
.service-card:nth-child(2) { animation-delay: 0.45s; }
.service-card:nth-child(3) { animation-delay: 0.65s; }

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 252, 241, 0.48);
  box-shadow: 0 0 20px rgba(102, 252, 241, 0.12), 0 16px 36px rgba(0, 0, 0, 0.26);
}

.service-card h2 {
  margin: 0 0 10px;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #66FCF1;
}

.service-card-divider {
  width: 64px;
  height: 1px;
  margin: 0 auto 14px;
  background: linear-gradient(90deg, transparent, rgba(102, 252, 241, 0.95), transparent);
  opacity: 0.9;
}

.service-card p {
  margin: 0;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.service-icon {
  width: 42px;
  height: auto;
  margin-bottom: 14px;
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
  opacity: 1;
}

@keyframes fadeWord {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes premiumDividerReveal {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 0.95;
  }
}

@media (max-width: 900px) {
  .premium-services-grid {
    grid-template-columns: 1fr;
  }

  .premium-title {
    font-size: 34px;
  }

  .premium-slogan {
    font-size: 16px;
  }
}
.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.learninghub-hero {
  position: relative;
  min-height: 100vh;
  background: url("../images/learninghub-bg.png") no-repeat left center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 20px;
}

.learninghub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 0;
}

.learninghub-hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), transparent);
  z-index: 0;
  pointer-events: none;
}

.learninghub-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  text-align: center;
}

.learninghub-title {
  margin: 0;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: #ffffff;
}

.learninghub-divider {
  width: min(320px, 80%);
  height: 1px;
  margin: 14px auto 18px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0.95;
  animation: learninghubDividerReveal 1.2s ease forwards;
}

.learninghub-description {
  max-width: 760px;
  margin: 0 auto 42px;
  color: #66FCF1;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(8px);
  animation: learninghubFadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

.learninghub-grid {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.learninghub-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  text-align: left;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(102, 252, 241, 0.26);
  border-radius: 20px;
  padding: 26px 26px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(12px);
  animation: learninghubCardFade 0.85s ease forwards;
}

.learninghub-card:nth-child(1) { animation-delay: 0.25s; }
.learninghub-card:nth-child(2) { animation-delay: 0.45s; }
.learninghub-card:nth-child(3) { animation-delay: 0.65s; }

.learninghub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 252, 241, 0.48);
  box-shadow: 0 0 20px rgba(102, 252, 241, 0.12), 0 16px 36px rgba(0, 0, 0, 0.26);
}

.learninghub-card-copy h2 {
  margin: 0 0 10px;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #66FCF1;
}

.learninghub-card-divider {
  width: 72px;
  height: 1px;
  margin: 0 0 14px;
  background: linear-gradient(90deg, rgba(102, 252, 241, 0.95), transparent);
  opacity: 0.9;
}

.learninghub-card-copy p {
  margin: 0;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
  max-width: 620px;
}

.learninghub-button {
  min-width: 142px;
  justify-content: center;
  white-space: nowrap;
  border: 1px solid rgba(102, 252, 241, 0.4);
  background: transparent;
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.learninghub-button:hover {
  border-color: #66FCF1;
  box-shadow: 0 0 12px rgba(102, 252, 241, 0.25);
  transform: translateY(-1px);
}

@keyframes learninghubDividerReveal {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 0.95;
  }
}

@keyframes learninghubFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes learninghubCardFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .learninghub-title {
    font-size: 34px;
  }

  .learninghub-card {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 18px;
  }

  .learninghub-button {
    width: 100%;
  }
}
.blog-hero {
  min-height: 100vh;
  padding: 72px 20px 64px;
  background: #000000;
}

.blog-content {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.blog-title {
  margin: 0;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: #ffffff;
}

.blog-divider {
  width: min(340px, 82%);
  height: 1px;
  margin: 14px auto 18px;
  background: linear-gradient(90deg, transparent, #66FCF1, transparent);
  opacity: 0.9;
}

.blog-description {
  max-width: 760px;
  margin: 0 auto 42px;
  color: #66FCF1;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
  text-align: left;
  margin-top: 30px;
}

.blog-card {
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(102, 252, 241, 0.18);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 252, 241, 0.45);
  box-shadow: 0 0 20px rgba(102, 252, 241, 0.1), 0 16px 36px rgba(0, 0, 0, 0.24);
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-card-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(102, 252, 241, 0.14), rgba(102, 252, 241, 0.03));
  border-bottom: 1px solid rgba(102, 252, 241, 0.14);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-card-body {
  padding: 22px 20px 22px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.blog-card-meta {
  margin: 0 0 10px;
  color: rgba(102, 252, 241, 0.82);
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.blog-card-excerpt {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.blog-empty-state {
  grid-column: 1 / -1;
  padding: 34px 28px;
  text-align: center;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(102, 252, 241, 0.18);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.blog-empty-state-message {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.post-page {
  min-height: 100vh;
  padding: 72px 20px 64px;
  background: #000000;
}

.post-shell {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.post-title {
  margin: 0;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.15;
  color: #ffffff;
}

.post-divider {
  width: min(320px, 80%);
  height: 1px;
  margin: 14px auto 16px;
  background: linear-gradient(90deg, transparent, #66FCF1, transparent);
  opacity: 0.9;
}

.post-meta {
  margin: 0 0 28px;
  color: rgba(102, 252, 241, 0.82);
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-toggle {
  margin-top: 24px;
}

.language-toggle input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.language-toggle-controls {
  display: inline-flex;
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(102, 252, 241, 0.22);
  border-radius: 999px;
  margin-bottom: 28px;
}

.lang-button {
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

#lang-en:checked ~ .language-toggle-controls label[for="lang-en"],
#lang-es:checked ~ .language-toggle-controls label[for="lang-es"] {
  background: rgba(102, 252, 241, 0.14);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(102, 252, 241, 0.18);
}

.post-language-panel {
  display: none;
  text-align: left;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(102, 252, 241, 0.18);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.post-language-panel p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.9;
}

.post-language-panel p:last-child {
  margin-bottom: 0;
}

#lang-en:checked ~ .post-language-en {
  display: block;
}

#lang-es:checked ~ .post-language-es {
  display: block;
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 680px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-title,
  .post-title {
    font-size: 32px;
  }

  .language-toggle-controls {
    width: 100%;
    justify-content: center;
  }
}
.blog-language-toggle {
  margin-bottom: 36px;
}

.blog-language-toggle input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.blog-language-toggle-controls {
  display: inline-flex;
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(102, 252, 241, 0.22);
  border-radius: 999px;
  margin-bottom: 26px;
}

.blog-lang-button {
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

#blog-lang-en:checked ~ .blog-language-toggle-controls label[for="blog-lang-en"],
#blog-lang-es:checked ~ .blog-language-toggle-controls label[for="blog-lang-es"] {
  background: rgba(102, 252, 241, 0.14);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(102, 252, 241, 0.18);
}

.blog-language-panel {
  display: none;
}

.blog-language-active {
  display: block;
}
.timeslot-page {
  min-height: 100vh;
  padding: 72px 20px 64px;
  background: #000000;
}

.timeslot-shell {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.timeslot-title {
  margin: 0;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: #ffffff;
}

.timeslot-divider {
  width: min(340px, 82%);
  height: 1px;
  margin: 14px auto 18px;
  background: linear-gradient(90deg, transparent, #66FCF1, transparent);
  opacity: 0.9;
  transform: scaleX(0);
  transform-origin: center;
  animation: timeslotDividerReveal 1s ease forwards;
}

.timeslot-description {
  max-width: 760px;
  margin: 0 auto 42px;
  color: #66FCF1;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}

.timeslot-availability,
.timeslot-form-section {
  text-align: left;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(102, 252, 241, 0.18);
  border-radius: 22px;
  padding: 32px 30px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.timeslot-availability {
  margin-bottom: 24px;
}

.timeslot-section-title {
  margin: 0 0 10px;
  color: #66FCF1;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.25;
}

.timeslot-section-copy {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
}

.timeslot-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
}

.timeslot-day-groups {
  display: grid;
  gap: 14px;
}

.timeslot-day {
  border: 1px solid rgba(102, 252, 241, 0.16);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.timeslot-day-summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  color: #ffffff;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease;
}

.timeslot-day-summary::-webkit-details-marker {
  display: none;
}

.timeslot-day-summary::after {
  content: "+";
  float: right;
  color: rgba(102, 252, 241, 0.84);
  font-size: 18px;
  line-height: 1;
}

.timeslot-day[open] .timeslot-day-summary {
  background: rgba(102, 252, 241, 0.05);
  color: #66FCF1;
}

.timeslot-day[open] .timeslot-day-summary::after {
  content: "-";
}

.timeslot-day .timeslot-options {
  padding: 0 20px 20px;
}

.timeslot-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.timeslot-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.timeslot-option span {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(102, 252, 241, 0.2);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  animation: timeslotFadeUp 0.7s ease forwards;
}

.timeslot-option:nth-child(1) span { animation-delay: 0.12s; }
.timeslot-option:nth-child(2) span { animation-delay: 0.22s; }
.timeslot-option:nth-child(3) span { animation-delay: 0.32s; }
.timeslot-option:nth-child(4) span { animation-delay: 0.42s; }

.timeslot-option input:checked + span {
  border-color: #66FCF1;
  box-shadow: 0 0 16px rgba(102, 252, 241, 0.18);
  background: rgba(102, 252, 241, 0.06);
  transform: translateY(-2px);
}

.timeslot-form {
  margin-top: 4px;
}

.timeslot-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.timeslot-field {
  margin-bottom: 18px;
}

.timeslot-field label {
  display: block;
  margin-bottom: 8px;
  color: #66FCF1;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeslot-field input,
.timeslot-field textarea {
  width: 100%;
  border: 1px solid rgba(102, 252, 241, 0.22);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  padding: 14px 16px;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  outline: none;
  box-sizing: border-box;
}

.timeslot-field input:focus,
.timeslot-field textarea:focus {
  border-color: #66FCF1;
  box-shadow: 0 0 0 3px rgba(102, 252, 241, 0.12);
}

.timeslot-actions {
  margin-top: 10px;
}

.timeslot-actions .button {
  min-width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeslot-actions .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(102, 252, 241, 0.18);
}

@media (max-width: 780px) {
  .timeslot-form-grid,
  .timeslot-options {
    grid-template-columns: 1fr;
  }

  .timeslot-title {
    font-size: 34px;
  }

  .timeslot-availability,
  .timeslot-form-section {
    padding: 24px 20px;
  }

  .timeslot-actions .button {
    width: 100%;
  }

  .timeslot-language-toggle-controls {
    width: 100%;
    justify-content: center;
  }
}


.timeslot-language-toggle {
  margin-top: 10px;
}

.timeslot-language-toggle input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.timeslot-language-toggle-controls {
  display: inline-flex;
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(102, 252, 241, 0.22);
  border-radius: 999px;
  margin-bottom: 28px;
}

.timeslot-lang-button {
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

#timeslot-lang-en:checked ~ .timeslot-language-toggle-controls label[for="timeslot-lang-en"],
#timeslot-lang-es:checked ~ .timeslot-language-toggle-controls label[for="timeslot-lang-es"] {
  background: rgba(102, 252, 241, 0.14);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(102, 252, 241, 0.18);
}

.timeslot-language-panel {
  display: none;
  animation: timeslotPanelFade 0.4s ease;
}

#timeslot-lang-en:checked ~ .timeslot-language-en {
  display: block;
}

#timeslot-lang-es:checked ~ .timeslot-language-es {
  display: block;
}

.timeslot-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 14px;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.timeslot-option span:hover {
  border-color: #66FCF1;
  box-shadow: 0 0 12px rgba(102, 252, 241, 0.12);
  background: rgba(102, 252, 241, 0.04);
}


@keyframes timeslotDividerReveal {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 0.9;
  }
}

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

@keyframes timeslotPanelFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.artcreation-hero {
  position: relative;
  min-height: 100vh;
  background: url("../images/artcreation-bg.png") no-repeat center right;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 20px;
}

.artcreation-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 0;
}

.artcreation-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.76), transparent);
  z-index: 0;
  pointer-events: none;
}

.artcreation-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  text-align: center;
}

.artcreation-title {
  margin: 0;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: #ffffff;
}

.artcreation-divider {
  width: min(320px, 80%);
  height: 1px;
  margin: 14px auto 18px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0.95;
  animation: learninghubDividerReveal 1.2s ease forwards;
}

.artcreation-description {
  max-width: 760px;
  margin: 0 auto 42px;
  color: #66FCF1;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(8px);
  animation: learninghubFadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

.artcreation-hero .learninghub-card {
  grid-template-columns: 1fr;
}

.artcreation-hero .learninghub-card:nth-child(4) { animation-delay: 0.85s; }
.artcreation-hero .learninghub-card:nth-child(5) { animation-delay: 1.05s; }

@media (max-width: 900px) {
  .artcreation-title {
    font-size: 34px;
  }
}
.promolab-hero {
  position: relative;
  min-height: 100vh;
  background: url("../images/promolab-bg.png") no-repeat center right;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 20px;
}

.promolab-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  z-index: 0;
}

.promolab-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.84), transparent);
  z-index: 0;
  pointer-events: none;
}

.promolab-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  text-align: left;
  margin-left: 6%;
}

.promolab-title {
  margin: 0;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: #ffffff;
}

.promolab-divider {
  width: min(320px, 80%);
  height: 1px;
  margin: 16px 0 22px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0.95;
  animation: learninghubDividerReveal 1.2s ease forwards;
}

.promolab-description {
  max-width: 700px;
  margin: 0 0 54px;
  color: #66FCF1;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(8px);
  animation: learninghubFadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

.promolab-hero .learninghub-grid {
  max-width: 980px;
  margin-top: 10px;
  margin-left: 0;
  margin-right: 0;
  row-gap: 26px;
}

.promolab-hero .learninghub-card {
  grid-template-columns: 1fr;
  background: rgba(0, 0, 0, 0.82);
  border-color: rgba(102, 252, 241, 0.18);
  transition: all 0.25s ease;
}

.promolab-hero .learninghub-card:hover {
  transform: translateY(-3px);
  border-color: rgba(102, 252, 241, 0.35);
}

.promolab-hero .learninghub-card-copy p {
  max-width: 640px;
}

@media (max-width: 900px) {
  .promolab-content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .promolab-title {
    font-size: 34px;
  }

  .promolab-divider {
    margin: 14px auto 18px;
  }

  .promolab-description {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 42px;
  }

  .promolab-hero .learninghub-grid {
    margin-top: 0;
    row-gap: 22px;
  }

  .promolab-hero .learninghub-card-copy p {
    max-width: 100%;
  }

  .promolab-hero::after {
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent);
  }
}




.service-card:nth-child(4) {
  border-color: rgba(4, 212, 190, 0.35);
  box-shadow: 0 0 20px rgba(4, 212, 190, 0.08);
}

.service-card:nth-child(4):hover {
  border-color: rgba(4, 212, 190, 0.6);
  box-shadow: 0 0 30px rgba(4, 212, 190, 0.15);
}
.store-hero {
  min-height: 100vh;
  display: block;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.72) 28%, rgba(0, 0, 0, 0.58) 50%, rgba(0, 0, 0, 0.84) 72%, rgba(0, 0, 0, 0.94) 100%),
    url("../images/store-bg.png") no-repeat left center;
  background-size: cover;
  padding: 72px 8% 80px;
}

.store-content {
  margin-left: 10%;
  margin-right: auto;
  max-width: 620px;
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}

.store-content h1 {
  margin-bottom: 18px;
}

.store-content p {
  max-width: 560px;
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(4, 212, 190, 0.24);
}

@media (max-width: 900px) {
  .store-hero {
    background-position: center;
    padding: 60px 20px 72px;
  }

  .store-content {
    margin: 0 auto;
    text-align: center;
    max-width: 520px;
    padding-left: 0;
  }

  .store-products {
    padding: 42px 0 0;
  }
}
/* === STORE FIX (FINAL CLEAN VERSION) === */

.store-products {
  padding: 68px 0 0;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.store-card {
  background: rgba(0, 0, 0, 0.74);
  border: 1px solid rgba(4, 212, 190, 0.14);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}

.store-card:hover {
  transform: translateY(-4px);
  border-color: rgba(4, 212, 190, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.store-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1.3;
}

.store-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.65;
}

.store-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(4, 212, 190, 0.1);
  border: 1px solid rgba(4, 212, 190, 0.28);
  color: #04D4BE;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-button {
  display: inline-block;
  margin-top: 6px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(4, 212, 190, 0.28);
  color: #04D4BE;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.store-button:hover {
  background: #04D4BE;
  color: #061311;
  border-color: #04D4BE;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .store-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}







