@font-face {
  font-family: Poppins;
  src: url("https://fluxnodeau.com/wp-content/themes/fluxnodeau-v1-01/2RMIDGAZ.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins-Bold;
  src: url("https://fluxnodeau.com/wp-content/themes/fluxnodeau-v1-01/NEESVN2L.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins-Semibold;
  src: url("https://fluxnodeau.com/wp-content/themes/fluxnodeau-v1-01/VDZEVWB6.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: Poppins, sans-serif;
  color: #0f1b2d;
  height: 100%;
  background-color: #f5f7fa;
  font-size: 15px;
}

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

a:hover {
  text-decoration: none;
}

a:focus,
a:active {
  outline: none;
}

:focus,
:active {
  outline: none;
}

ul li {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: inherit;
}

input,
button,
textarea,
select {
  margin: 0;
  font: inherit;
}

input {
  width: 100%;
  border: none;
}

textarea {
  border: none;
  resize: none;
}

img {
  max-width: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#base {
  height: 100%;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 16px;
  position: relative;
}

.section {
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

@media (min-width: 760px) {
  .section {
    padding: 60px 0;
  }
}

main {
  position: relative;
  flex: 1 1 auto;
  font-size: 15px;
}

/* ── Typography ── */

.hero-title {
  animation: fadeSlideUp 1s ease-out forwards;
  font-family: Poppins-Bold, sans-serif;
  font-size: 36px;
  line-height: 100%;
  opacity: 0;
  color: #0f1b2d;
}

@media (min-width: 760px) {
  .hero-title {
    font-size: 50px;
  }
}

@media (min-width: 1050px) {
  .hero-title {
    font-size: 70px;
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.heading-lg {
  font-family: Poppins-Semibold, sans-serif;
  font-size: 18px;
  line-height: 144%;
}

@media (min-width: 760px) {
  .heading-lg {
    font-size: 30px;
    line-height: 120%;
  }
}

@media (min-width: 1050px) {
  .heading-lg {
    font-size: 44px;
    line-height: 106%;
  }
}

.heading-md {
  font-family: Poppins-Bold, sans-serif;
  font-size: 18px;
  line-height: 133%;
}

@media (min-width: 760px) {
  .heading-md {
    font-size: 20px;
    line-height: 120%;
  }
}

.text-semibold {
  font-family: Poppins-Semibold, sans-serif;
  font-size: 16px;
  line-height: 125%;
}

@media (min-width: 760px) {
  .text-semibold {
    font-size: 17px;
    line-height: 130%;
  }
}

@media (min-width: 1050px) {
  .text-semibold {
    font-size: 18px;
    line-height: 122%;
  }
}

.text-small {
  font-family: Poppins-Semibold, sans-serif;
  font-size: 14px;
  line-height: 142%;
}

@media (min-width: 760px) {
  .text-small {
    font-size: 15px;
    line-height: 133%;
  }
}

@media (min-width: 1050px) {
  .text-small {
    font-size: 17px;
    line-height: 130%;
  }
}

/* ── Buttons ── */

.btn-primary {
  align-items: center;
  background: #00b4d8;
  border: 1px solid #0096c7;
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-family: Poppins-Semibold, sans-serif;
  gap: 10px;
  justify-content: center;
  overflow: hidden;
  padding: 13px 50px;
  position: relative;
  text-align: center;
  transition: color 0.5s ease;
  z-index: 1;
}

.btn-primary::before {
  background-color: #0096c7;
  border-radius: 8px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 0;
  z-index: -1;
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-outline {
  align-items: center;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-family: Poppins-Semibold, sans-serif;
  gap: 10px;
  justify-content: center;
  overflow: hidden;
  padding: 14px 50px;
  position: relative;
  text-align: center;
  transition: color 0.5s ease;
  z-index: 1;
}

.btn-outline::before {
  background: #ffffff;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 0;
  z-index: -1;
}

.btn-outline:hover {
  color: #0f1b2d;
}

.btn-outline:hover::before {
  width: 100%;
}

.btn-dark {
  align-items: center;
  background: #0f1b2d;
  border-radius: 8px;
  color: #f5f7fa;
  display: inline-flex;
  font-family: Poppins-Semibold, sans-serif;
  gap: 10px;
  justify-content: center;
  overflow: hidden;
  padding: 14px 50px;
  position: relative;
  text-align: center;
  transition: color 0.5s ease;
  z-index: 1;
}

.btn-dark::before {
  background-color: #1a2e47;
  border-radius: 8px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 0;
  z-index: -1;
}

.btn-dark:hover::before {
  width: 100%;
}

/* ── Badge ── */

.badge {
  align-items: center;
  background: #e0f7fc;
  border-radius: 20px;
  color: #0096c7;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  text-align: center;
  font-family: Poppins-Semibold, sans-serif;
  font-size: 13px;
  width: 110px;
}

.badge--light {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ── Cookie Banner ── */

.cookie-banner {
  background-color: #0f1b2d;
  border: 1px solid #00b4d8;
  border-radius: 12px;
  bottom: 20px;
  color: #f5f7fa;
  display: flex;
  flex-direction: column;
  gap: 30px;
  left: 20px;
  max-width: 300px;
  min-width: 300px;
  padding: 24px;
  position: fixed;
  z-index: 10000;
  box-shadow: 0 8px 32px rgba(0, 180, 216, 0.15);
}

@media (min-width: 1050px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1000px;
    min-width: 1000px;
    padding: 30px 40px;
  }
}

.cookie-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

@media (min-width: 1050px) {
  .cookie-actions {
    align-self: center;
    flex: 0 1 360px;
    grid-template-columns: repeat(3, 1fr);
    min-width: 360px;
  }

  .cookie-actions a,
  .cookie-actions button {
    padding: 13px;
  }
}

.cookie-actions button:first-of-type {
  border: 2px solid #00b4d8;
  color: #00b4d8;
  background: transparent;
}

.cookie-actions button:first-of-type::before {
  display: none;
}

.cookie-actions button:first-of-type:hover {
  background-color: #00b4d8;
  color: #ffffff;
}

/* ── Header ── */

.site-header {
  position: relative;
}

.age-bar {
  background-color: #0f1b2d;
  color: #7a9bbf;
  font-size: 14px;
  padding: 11px 0;
  text-align: center;
}

.age-bar a {
  color: #00b4d8;
  text-decoration: underline;
}

.nav-bar {
  background-color: #ffffff;
  padding: 10px 0;
  border-bottom: 2px solid #e8f4f8;
  box-shadow: 0 2px 12px rgba(15, 27, 45, 0.06);
}

.nav-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.desktop-nav {
  display: none;
}

@media (min-width: 760px) {
  .desktop-nav {
    align-items: center;
    display: flex;
    gap: 60px;
  }
}

.desktop-nav a {
  color: #0f1b2d;
  font-size: 16px;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

.desktop-nav a::after {
  background-color: #00b4d8;
  bottom: -3px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 0;
}

.desktop-nav a:hover {
  color: #00b4d8;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.logo-link {
  display: inline-flex;
  height: 40px;
  width: 40px;
}

.logo-link img {
  object-fit: contain;
}

.hamburger {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  height: 28px;
  justify-content: center;
  position: relative;
  width: 28px;
}

@media (min-width: 760px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  background-color: #0f1b2d;
  border-radius: 5px;
  height: 3px;
  position: absolute;
  transform-origin: center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger span:first-of-type {
  right: 0;
  top: 4px;
  width: 18px;
}

.hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
}

.hamburger span:last-of-type {
  bottom: 4px;
  left: 0;
  width: 18px;
}

.hamburger--open {
  left: 50%;
  position: absolute;
  top: -30px;
  transform: translateX(-50%);
  z-index: 10000;
}

.hamburger--open span:first-of-type {
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 28px;
}

.hamburger--open span:nth-of-type(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.hamburger--open span:last-of-type {
  bottom: 50%;
  left: 0;
  transform: translateY(50%) rotate(-45deg);
  width: 28px;
}

.mobile-nav {
  align-items: center;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 400px;
  justify-content: center;
  left: 0;
  position: absolute;
  row-gap: 30px;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(15, 27, 45, 0.1);
}

@media (min-width: 760px) {
  .mobile-nav {
    display: none;
  }
}

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

/* ── Hero ── */

.hero-section {
  background: linear-gradient(135deg, #e0f7fc 0%, #caf0f8 40%, #ade8f4 75%, #90e0ef 100%);
  min-height: 800px;
  padding: 30px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

@media (min-width: 760px) {
  .hero-section {
    padding: 60px 0;
  }
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 760px) {
  .hero-wrapper {
    row-gap: 50px;
  }
}

.hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
}

.hero-content a {
  min-width: 180px;
}

.hero-images {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.hero-img {
  max-height: 100px;
  max-width: 100px;
  object-fit: contain;
}

@media (min-width: 760px) {
  .hero-img {
    max-height: 240px;
    max-width: 240px;
  }
}

.hero-img--swing {
  animation: swingAnim 3s ease-in-out infinite;
  transform-origin: center top;
}

@media (min-width: 760px) {
  .hero-img--swing {
    max-height: 200px;
    max-width: 200px;
  }
}

.hero-float {
  animation: floatAnim 4s ease-in-out infinite;
  bottom: -50px;
  left: 50%;
  max-height: 320px;
  max-width: 250px;
  object-fit: contain;
  position: absolute;
  transform: translateX(-50%);
  z-index: -1;
}

@media (min-width: 760px) {
  .hero-float {
    bottom: -50px;
    max-height: 385px;
    max-width: 310px;
  }
}

@keyframes floatAnim {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10%);
  }
  to {
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes swingAnim {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-8deg);
  }
  75% {
    transform: rotate(8deg);
  }
  to {
    transform: rotate(0deg);
  }
}

/* ── Section Variants ── */

.section--light {
  background-color: #ffffff;
}

.section--dark {
  background-color: #0f1b2d;
  color: #f5f7fa;
}

.section--black {
  background: linear-gradient(135deg, #0f1b2d 0%, #1a2e47 100%);
  color: #f5f7fa;
  padding: 30px 0 0;
}

@media (min-width: 760px) {
  .section--black {
    padding: 50px 0 0;
  }
}

.section--orange {
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 50%, #0077b6 100%);
  color: #ffffff;
}

.section--gradient {
  background: linear-gradient(135deg, #e0f7fc 0%, #caf0f8 40%, #ade8f4 80%, #90e0ef 100%);
}

/* ── Section Intros ── */

.section-intro {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  row-gap: 20px;
  text-align: center;
}

.section-intro img {
  max-height: 73px;
  max-width: 78px;
  object-fit: contain;
}

.section-intro-center {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  row-gap: 20px;
  text-align: center;
}

.section-intro-left {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  row-gap: 20px;
}

.section-block {
  display: flex;
  flex-direction: column;
}

/* ── Perks Grid ── */

.perks-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 760px) {
  .perks-grid {
    align-items: stretch;
    flex-direction: row;
  }
}

.perks-grid article {
  background-color: #ffffff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(15, 27, 45, 0.07);
  border: 1px solid #e8f4f8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.perks-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 180, 216, 0.12);
}

.perks-grid article h4 {
  margin-bottom: 5px;
}

.perks-grid article:nth-child(2) {
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
  color: #ffffff;
  max-height: 100%;
  border: none;
}

@media (min-width: 760px) {
  .perks-grid article:nth-child(2) {
    min-height: 400px;
  }
}

.perks-grid img {
  margin-bottom: 20px;
  max-height: 60px;
  max-width: 60px;
  object-fit: contain;
}

/* ── Events ── */

.events-wrapper {
  display: flex;
  flex-direction: column;
}

.events-wrapper a {
  align-self: center;
  min-width: 180px;
}

.events-layout {
  display: flex;
  flex-direction: column;
}

@media (min-width: 760px) {
  .events-layout {
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 30px;
  }
}

.events-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  row-gap: 16px;
}

.events-list article {
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.events-list article:hover {
  background: rgba(255, 255, 255, 0.1);
}

.events-list article h4 {
  margin-bottom: 5px;
}

.events-list img {
  align-self: center;
  max-height: 30px;
  max-width: 30px;
  object-fit: contain;
}

.events-photo {
  align-self: center;
  margin: 0 auto 30px;
  max-width: 280px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@media (min-width: 760px) {
  .events-photo {
    margin: 0;
    max-width: 405px;
  }
}

@media (min-width: 1050px) {
  .events-photo {
    max-width: 490px;
  }
}

/* ── Stories ── */

.stories-wrapper {
  display: flex;
  flex-direction: column;
}

.stories-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

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

@media (min-width: 1050px) {
  .stories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stories-grid article {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  border-left: 4px solid #00b4d8;
  box-shadow: 0 2px 12px rgba(15, 27, 45, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stories-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 180, 216, 0.1);
}

/* ── About ── */

.about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 760px) {
  .about-wrapper {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1050px) {
  .about-wrapper p {
    max-width: 400px;
  }
}

.about-wrapper img {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15, 27, 45, 0.12);
}

@media (min-width: 760px) {
  .about-wrapper img {
    max-height: 174px;
    max-width: 174px;
  }
}

@media (min-width: 1050px) {
  .about-wrapper img {
    max-height: 312px;
    max-width: 312px;
  }
}

/* ── Games ── */

.games-block {
  display: flex;
  flex-direction: column;
}

.games-intro {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  row-gap: 20px;
  text-align: center;
}

.games-intro img {
  max-height: 70px;
  max-width: 70px;
  object-fit: contain;
}

.games-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  max-width: 280px;
}

@media (min-width: 760px) {
  .games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    justify-items: center;
    justify-self: center;
    margin: 0;
    max-width: 100%;
  }
}

.games-grid a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 70px 30px;
  transition: all 0.3s ease-in-out;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e8f4f8;
  box-shadow: 0 2px 12px rgba(15, 27, 45, 0.05);
}

@media (min-width: 760px) {
  .games-grid a {
    gap: 30px;
    padding: 70px 57px;
  }

  .games-grid a:nth-child(2),
  .games-grid a:nth-child(3) {
    max-width: 320px;
    padding: 50px 44px;
  }

  .games-grid a:nth-child(2) img,
  .games-grid a:nth-child(3) img {
    max-height: 150px;
    min-height: 150px;
  }
}

@media (min-width: 1050px) {
  .games-grid a:nth-child(2),
  .games-grid a:nth-child(3) {
    max-width: 100%;
    padding: 70px 57px;
  }

  .games-grid a:nth-child(3) {
    margin-left: 100px;
  }

  .games-grid a:nth-child(2) {
    margin-right: 100px;
  }

  .games-grid a:first-child,
  .games-grid a:nth-child(4) {
    max-width: 500px;
  }
}

.games-grid a img {
  border-radius: 12px;
  min-height: 150px;
  object-fit: contain;
}

@media (min-width: 1050px) {
  .games-grid a img {
    max-height: 150px;
    min-height: 150px;
  }
}

.games-grid a:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(0, 180, 216, 0.15);
  border-color: #00b4d8;
}

.game-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.game-info button {
  align-items: center;
  color: #00b4d8;
  display: flex;
  justify-content: space-between;
}

/* ── CTA Black ── */

.cta-row {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

@media (min-width: 760px) {
  .cta-row {
    column-gap: 30px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.cta-text {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

@media (min-width: 760px) {
  .cta-text {
    align-self: center;
  }
}

@media (min-width: 1050px) {
  .cta-text {
    align-self: flex-start;
    max-width: 780px;
  }
}

.cta-text a {
  align-self: flex-start;
}

.cta-text p {
  color: #7a9bbf;
}

.cta-text .badge {
  background: rgba(0, 180, 216, 0.15);
  color: #00b4d8;
  border: 1px solid rgba(0, 180, 216, 0.3);
}

.cta-image {
  align-self: center;
  max-width: 280px;
}

@media (min-width: 760px) {
  .cta-image {
    max-width: 310px;
  }
}

/* ── Pricing ── */

.pricing-block {
  display: flex;
  flex-direction: column;
}

.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

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

.pricing-grid article {
  display: flex;
  flex-direction: column;
  padding: 0 0 24px;
  row-gap: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e8f4f8;
  box-shadow: 0 2px 16px rgba(15, 27, 45, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 180, 216, 0.14);
  border-color: #00b4d8;
}

.pricing-grid article > *:not(.package-tag) {
  padding-left: 24px;
  padding-right: 24px;
}

.pricing-grid article > .package-tag {
  padding: 0;
}

.pricing-grid article > .heading-lg {
  padding-top: 4px;
  padding-bottom: 0;
}

.package-header {
  align-items: center;
  column-gap: 16px;
  display: flex;
  padding-top: 24px;
}

.package-header span {
  font-size: 13px;
  color: #7a9bbf;
  margin-bottom: 4px;
  display: block;
}

.package-header img {
  height: 50px;
  object-fit: contain;
  width: 40px;
}

.pricing-grid article ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.pricing-grid article ul li {
  align-items: center;
  column-gap: 8px;
  display: flex;
}

.package-tag {
  background: linear-gradient(90deg, #00b4d8 0%, #0096c7 100%);
  color: #ffffff;
  padding: 10px 0;
  text-align: center;
  font-family: Poppins-Semibold, sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ── FAQ ── */

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 760px) {
  .faq-wrapper {
    flex-direction: row;
    gap: 40px;
  }
}

.faq-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-intro .badge {
  align-items: center;
  background: #e0f7fc;
  color: #0096c7;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 110px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

@media (min-width: 1050px) {
  .faq-list {
    max-width: 625px;
  }
}

.faq-question {
  column-gap: 5px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.faq-icon {
  align-self: center;
  background: #e0f7fc;
  border-radius: 50%;
  flex: 0 0 48px;
  height: 48px;
  justify-content: center;
  width: 48px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.faq-icon svg path {
  fill: #0096c7;
}

.faq-icon svg {
  transition: transform 0.3s ease;
}

.faq-icon--active {
  background: #00b4d8;
}

.faq-icon--active svg {
  transform: rotate(180deg);
}

.faq-icon--active svg path {
  fill: #ffffff;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  text-align: left;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e8f4f8;
  box-shadow: 0 1px 6px rgba(15, 27, 45, 0.05);
}

.faq-item:hover {
  background-color: #f0fafd;
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.08);
}

.faq-item--open {
  background-color: #f0fafd;
  gap: 10px;
  border-color: #00b4d8;
}

.faq-answer {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.faq-answer--visible {
  margin-top: 10px;
  max-height: 200px;
  opacity: 1;
}

/* ── Final CTA (orange/teal section) ── */

.final-cta-row {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

@media (min-width: 760px) {
  .final-cta-row {
    column-gap: 30px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.final-cta-text {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

@media (min-width: 760px) {
  .final-cta-text {
    align-self: center;
  }
}

@media (min-width: 1050px) {
  .final-cta-text {
    align-self: flex-start;
    max-width: 780px;
  }
}

.final-cta-text a {
  align-self: flex-start;
}

.final-cta-text .badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.final-cta-image {
  align-self: center;
  max-width: 252px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

/* ── Testimonials ── */

.testimonials-block {
  display: flex;
  flex-direction: column;
}

.testimonials-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

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

.testimonials-grid article {
  display: flex;
  gap: 14px;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e8f4f8;
  box-shadow: 0 2px 12px rgba(15, 27, 45, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 180, 216, 0.1);
}

.testimonials-grid article img {
  height: 60px;
  object-fit: contain;
  width: 60px;
  border-radius: 50%;
  border: 2px solid #e0f7fc;
  flex-shrink: 0;
}

.testimonials-grid article h4 {
  margin-bottom: 5px;
  color: #00b4d8;
}

/* ── Location ── */

.location-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 760px) {
  .location-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}

.location-info {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

@media (min-width: 1050px) {
  .location-info {
    max-width: 545px;
  }
}

.location-info .badge {
  background: #e0f7fc;
  color: #0096c7;
  height: 30px;
  justify-content: center;
  width: 110px;
}

.location-info a {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  color: #0f1b2d;
  transition: color 0.3s ease;
}

.location-info a:hover {
  text-decoration: underline;
  color: #00b4d8;
}

.map-container {
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(15, 27, 45, 0.12);
  height: 300px;
  overflow: hidden;
  width: 100%;
  border: 2px solid #e8f4f8;
}

@media (min-width: 760px) {
  .map-container {
    height: 400px;
    max-width: 500px;
  }
}

@media (min-width: 1050px) {
  .map-container {
    height: 450px;
    max-width: 600px;
  }
}

.map-container iframe {
  display: block;
}

/* ── Footer ── */

.site-footer {
  position: relative;
}

.footer-inner {
  padding: 40px 0 30px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 760px) {
  .footer-nav {
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 14px;
}

.footer-col:first-of-type {
  font-size: 14px;
  justify-content: space-between;
}

.footer-col a:not(.footer-logo):not(.footer-contact-link) {
  color: #0f1b2d;
  font-size: 15px;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
  width: fit-content;
}

.footer-col a:not(.footer-logo):not(.footer-contact-link)::after {
  background-color: #00b4d8;
  bottom: -3px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 0;
}

.footer-col a:not(.footer-logo):not(.footer-contact-link):hover {
  color: #00b4d8;
}

.footer-col a:not(.footer-logo):not(.footer-contact-link):hover::after {
  width: 100%;
}

.footer-logo {
  display: inline-flex;
  height: 40px;
  width: 40px;
}

.footer-logo img {
  object-fit: contain;
}

.footer-contact-link {
  align-items: center;
  column-gap: 10px;
  display: flex;
  color: #0f1b2d;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: #00b4d8;
}

.footer-col-title {
  font-family: Poppins-Semibold, sans-serif;
  font-size: 14px;
  line-height: 142%;
  margin-bottom: 6px;
  color: #00b4d8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-copy {
  background-color: #0f1b2d;
  color: #7a9bbf;
  font-size: 14px;
  padding: 12px 16px;
  text-align: center;
  border-top: 1px solid #1a2e47;
}

/* ── Events Page ── */

.events-hero-section {
  background: linear-gradient(135deg, #e0f7fc 0%, #caf0f8 40%, #ade8f4 80%, #90e0ef 100%);
  position: relative;
  z-index: 1;
}

.events-hero-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

@media (min-width: 760px) {
  .events-hero-wrapper {
    row-gap: 50px;
  }
}

.events-hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
}

.events-hero-content a {
  min-width: 180px;
}

.events-hero-img {
  align-self: center;
  max-height: 280px;
  max-width: 280px;
  object-fit: contain;
}

.event-types-block {
  display: flex;
  flex-direction: column;
}

.event-types-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 280px;
}

@media (min-width: 760px) {
  .event-types-grid {
    max-width: 100%;
  }
}

.event-types-grid article {
  display: flex;
  flex-direction: column;
  padding: 50px 20px;
  row-gap: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e8f4f8;
  box-shadow: 0 2px 16px rgba(15, 27, 45, 0.07);
}

@media (min-width: 760px) {
  .event-types-grid article {
    column-gap: 20px;
    flex-direction: row;
    padding: 50px 40px;
  }
}

@media (min-width: 1050px) {
  .event-types-grid article {
    padding: 50px 120px;
  }
}

.event-article-content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

@media (min-width: 1050px) {
  .event-article-content {
    max-width: 630px;
  }
}

.event-article-content ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

@media (min-width: 760px) {
  .event-article-content ul {
    column-gap: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-article-content ul li {
  align-items: center;
  column-gap: 10px;
  display: flex;
}

.event-article-content a {
  align-self: flex-start;
  min-width: 180px;
}

.event-types-grid img {
  border-radius: 12px;
}

@media (min-width: 760px) {
  .event-types-grid img {
    max-height: 312px;
    max-width: 312px;
  }
}

/* ── Contact ── */

.contact-section {
  background-color: #f5f7fa;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-block h2,
.contact-block p {
  text-align: center;
}

.contact-block p {
  margin-bottom: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 670px;
  row-gap: 20px;
  width: 100%;
}

.contact-form button[type="submit"] {
  align-self: center;
  min-width: 200px;
}

.form-field {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  width: 100%;
}

.form-field input,
.form-field textarea {
  background: #ffffff;
  border: 1px solid #d4eaf2;
  border-radius: 10px;
  padding: 14px 20px;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #7a9bbf;
}

.form-field input[type="number"] {
  -moz-appearance: textfield;
}

.form-field input[type="number"]::-webkit-inner-spin-button,
.form-field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-grid-two {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 760px) {
  .form-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-grid-three {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 760px) {
  .form-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.date-input-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.date-input-wrapper input {
  width: 100%;
}

.date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.date-input::-moz-calendar-picker-indicator {
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.date-input[data-placeholder="true"] {
  color: transparent;
}

.date-input[data-placeholder="true"]::-moz-color-swatch {
  color: transparent;
}

.date-input[data-placeholder="false"] {
  color: #0f1b2d;
}

.date-placeholder {
  color: #7a9bbf;
  font-size: 16px;
  left: 20px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.checkbox-label {
  align-self: center;
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.checkbox-label input[type="checkbox"] {
  height: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}

.checkbox-label input:checked ~ span {
  background: transparent;
}

.checkbox-label input:checked ~ span::after {
  display: block;
}

.checkbox-box {
  background-color: #f5f7fa;
  border: 1px solid #0f1b2d;
  border-radius: 5px;
  box-sizing: border-box;
  cursor: pointer;
  height: 24px;
  left: 0;
  position: absolute;
  top: 0;
  width: 24px;
}

.checkbox-box::after {
  border: solid #00b4d8;
  border-width: 0 2px 2px 0;
  content: "";
  display: none;
  height: 10px;
  left: 8px;
  position: absolute;
  top: 5px;
  transform: rotate(45deg);
  width: 5px;
}

.checkbox-text {
  font-size: 14px;
  margin-left: 40px;
}

.checkbox-text a {
  text-decoration: underline;
}

.form-error {
  color: #0096c7;
  display: inline-block;
  font-size: 11px;
  margin-top: 2px;
}

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

/* ── Policy ── */

.policy-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}

.policy-block h1 {
  margin-bottom: 5px;
}

.policy-date {
  color: #7a9bbf;
  font-size: 14px;
  margin-bottom: 10px;
}

.policy-block p {
  line-height: 1.75;
}

.policy-block a {
  color: #00b4d8;
  text-decoration: underline;
}

.policy-block a:hover {
  text-decoration: none;
}

.policy-links {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .policy-links {
    gap: 30px;
  }
}

.policy-links a {
  text-decoration: underline;
}
