@import url("https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden !important;
}
:root {
  --primary-color: #262f4c;
  --secondary-color: #4b2779;
  --text-color: #333333;
  --bg-color: #ffffff;
  --divider-color: #eaeaea;
  --hover-color: #f5f5f5;
  --font-family: "Noto Serif JP", serif;
  -webkit-font-smoothing: antialiased;
  --secondary-font-family: "Philosopher", sans-serif;
  --hero-bg-color: linear-gradient(120.08deg, #033432 -7.87%, #172244 41.1%);
  --navy: #262f4c;
  --navy-mid: #2d3e6b;
  --navy-light: #3d5080;
  --bg: #f5f4f0;
  --step-size: 98px;
  --connector-color: #b0b8cc;

  --bg-gradient-start: #0d2233;
  --bg-gradient-mid: #1a2e40;
  --bg-gradient-end: #0f1e2b;

  --card-bg: #ffffff;
  --card-radius: 6px;
  --card-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);

  --label-color: #2c2c2c;
  --input-bg: #f5f5f7;
  --input-border: transparent;
  --input-focus-border: #6b7fa3;
  --input-radius: 4px;
  --input-text: #333333;
  --placeholder-color: #b0b0b0;

  --badge-bg: #d92e4e;
  --badge-text: #ffffff;

  --btn-bg: #ffffff;
  --btn-border: #2c2c2c;
  --btn-text: #2c2c2c;
  --btn-hover-bg: #2c2c2c;
  --btn-hover-text: #ffffff;

  --contact-label-color: #7a8fa6;

  --checkbox-accent: #e8336d;
  --link-color: #3a5a8a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: #f8f8f8;
  overflow-x: hidden !important;
}

.btn-wrapper {
  display: flex;
  gap: 40px;
}

/* Base button */
.glass-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 18px 25px;
  border-radius: 40px;

  color: #eaeaf0;
  font-size: 18px;
  font-weight: 500;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);

  cursor: pointer;
  overflow: hidden;
  border: none;
  max-width: 300px;
  width: 100%;
  transition: all 0.3s ease;
  justify-content: space-between;
}

.glass-btn .btn-label {
  margin: 0 auto;
}

/* Gradient Border */
.glass-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  padding: 1.5px;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.1)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Shadow */
.glass-btn {
  box-shadow:
    6px 6px 20px rgba(0, 0, 0, 0.4),
    -4px -4px 10px rgba(255, 255, 255, 0.05);
}

/* Hover */
.glass-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    10px 10px 30px rgba(0, 0, 0, 0.5),
    -6px -6px 12px rgba(255, 255, 255, 0.08);
}

/* Arrow animation */
.glass-btn .arrow {
  transition: transform 0.3s ease;
  transform: scale(1.5);
  margin-bottom: 6px;
}

.glass-btn:hover .arrow {
  transform: translateX(6px);
}

/* Light variant */
.glass-btn.light {
  background: rgba(255, 255, 255, 0.12);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.main-content {
  /* max-width: 1680px; */
  margin: 0 auto;
  padding: 0;
}

.hero-container {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90vh;
}
.hero-section.contact,
.hero-section .hero-container {
  min-height: 75vh;
}

.hero-person-main {
  position: absolute;
  bottom: 0;
  right: 50px;
  z-index: 999;
  max-height: 80vh;
}

.hero-section {
  background: var(--hero-bg-color);
  color: #ffffff;
  min-height: 90vh;
  position: relative;
}

/* Left Content */
.hero-content {
  flex: 1;
  padding: 2rem 0 0 5rem;
  max-width: 800px;
  z-index: 9999;
}

.hero-title {
  font-size: 50px;
  font-weight: 400;
  line-height: 80px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.hero-title .highlight {
  color: #fff5b2;
}

.hero-subtitle {
  font-size: 24px;
  line-height: 2;
  margin-bottom: 3rem;
  color: white;
  font-weight: 400;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 4rem;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(2px);
  background-color: rgba(255, 255, 255, 0.2);
  /* Lighter translucent glass */
  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow: 0px 4px 10px 0px #262f4c80;
}

.hero-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.hero-person-img {
  position: absolute;
  z-index: 999;
  right: 0;
  /* top: -48px; */
  bottom: -30px;
  max-height: 99vh;
  width: auto;
  max-width: 100%;
  width: 100%;
  /* object-fit: cover; */
}
.hero-section.contact .hero-person-img {
  bottom: -20px;
}

/* Responsive adjustments */

@media (max-width: 1800px) {
  .hero-person-img {
    bottom: -20px;
  }
}

.site-header {
  background-color: transparent;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  background-color: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 1rem 2rem;
  height: 80px;
  gap: 60px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.logo-title {
  color: var(--primary-color);
  font-size: 14px;
}

.logo-title.sub {
  font-size: 12px;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: #666;
  letter-spacing: 0.5px;
}

.desktop-nav {
  display: flex;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 99999;
}

.desktop-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  transition: color 0.2s;
  letter-spacing: 0.2em;
  font-family: var(--secondary-font-family);
}

.desktop-nav a:hover {
  color: var(--primary-color);
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.hamburger-btn:hover {
  background-color: var(--hover-color);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  /* Slide from left to right as requested */
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background-color: var(--bg-color);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
  /* Shadow on the right side */
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.active {
  left: 0;
  /* Slide in to view */
}

/* Drawer Header with Close Button */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--divider-color);
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 8px 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.close-btn:hover {
  background-color: var(--hover-color);
  color: var(--text-color);
}

/* Drawer Navigation Links */
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  flex-grow: 1;
}

.mobile-nav a {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #444;
  transition: background-color 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background-color: var(--hover-color);
  color: var(--primary-color);
}

/* Drawer Footer / Auth Buttons */
.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--divider-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-outline:hover {
  background-color: rgba(75, 39, 121, 0.05);
  /* very light purple indicator */
}

.btn-primary {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #3f1e6a;
}

/* Personal Message Section */
.personal-message-section {
  /* background-color: #ffffff; */
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.message-container {
  /* max-width: 1680px; */
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 0 0 10rem;
  position: relative;
  z-index: 2;
}

.message-content {
  flex: 1;
  max-width: 1680px;
}

.message-label {
  font-family: var(--secondary-font-family);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.message-title {
  font-size: 2.5rem;
  font-weight: 300;
  /* line-height: 1.4; */
  color: var(--primary-color);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.message-text {
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 35px;
}

.message-decorations {
  /* flex: 1; */
  position: relative;
  max-height: 350px;
  display: flex;
  align-items: center;
  justify-content: end;
}

/* Quiet Moments Buttons */
.quiet-moments-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.qm-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background-color: #ffffff;
  color: var(--primary-color);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;

  box-shadow:
    0px 4px 4px 0px #262f4c42,
    rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  transition: all 0.3s ease;
  border: 1px solid white;
  width: 100%;
  max-width: 320px;
}

.qm-btn:hover {
  box-shadow: 0px 12px 28px rgba(38, 47, 76, 0.12);
  transform: translateY(-2px);
}

.qm-text {
  margin: 0 auto;
  letter-spacing: 0.2em;
}

.qm-arrow {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.qm-btn:hover .qm-arrow {
  transform: translateX(4px);
}

.strength-section {
  background-image: url("./assets/strengths.png");
  background-size: cover;
  /* background-position: center;
  background-attachment: fixed; */
  position: relative;
  /* min-height: 100vh; */
  padding: 236px 0 0;
  /* background-color: white; */
  /* overflow: hidden; */
}

/* .strength-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  width: 0.5px;
  height: 100%;
  background-color: white;
  z-index: 1;
} */

.strength-container {
  /* max-width: 1680px; */
  margin: 0 auto;
  /* padding: 0 5rem; */
  position: relative;
  z-index: 2;
  min-height: 100vh;
  align-content: center;
}

.strength-header {
  margin-bottom: 80px;
}

.strength-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.strength-title {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 2px;
  max-width: 1680px;
  margin: 0 auto;
  padding-inline: 5rem;
}

.strength-title .highlight {
  font-size: 12px;
  margin-left: 20px;
}

.strength-item-size {
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
}

.strength-items .strength-item:first-child::before {
  content: "";
  position: absolute;
  top: -250px;
  left: 5%;
  width: 1px;
  height: 1500px;
  background-color: white;
  z-index: 1;
}

.profile-section .strength-items .strength-item:first-child::before {
  height: 1200px;
}

.strength-items {
  display: flex;
  flex-direction: column;
  gap: 75px;
}

.strength-items .strength-item:last-child {
  border: none;
}

.strength-item {
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  padding-bottom: 70px;
  border-bottom: 1px solid white;
  padding-inline: 3rem;
}

.strength-number {
  font-size: 48px;
  font-weight: 700;
  color: white;
  min-width: 150px;
  text-align: center;
  position: relative;
  flex-shrink: 0;
  font-family: var(--secondary-font-family);
}

/* .strength-number::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
} */

.strength-number::after {
  content: "";
  position: absolute;
  width: 185px;
  height: 185px;
  border: 1px solid white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.strength-content {
  flex: 1;
  padding-top: 20px;
}

.strength-label-box {
  display: inline-block;
  background-color: white;
  padding: 0px 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.strength-description {
  font-size: 16px;
  line-height: 1.8;
  color: white;
  font-weight: 400;
}

.services-section {
  background: radial-gradient(
    53.66% 54.48% at 4.55% 4.65%,
    #264c44 0%,
    #262f4c 100%
  );
  padding: 50px 20px;
  color: white;
  text-align: center;
  position: relative;
  z-index: 99;
}

.services-section .service-title {
  text-align: center;
}

.services-section .service-title span {
  font-family: var(--secondary-font-family);
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  letter-spacing: 2px;
  text-align: center;
  letter-spacing: 0.2em;
}

.services-section .service-title h2 {
  font-weight: 400;
  font-size: 45px;
  text-align: center;
  margin-top: 20px;
}

.services-main-content {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.services-main-content img {
  max-height: 600px;

  width: 100%;
  object-fit: contain;
}

.neo-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  justify-self: center;
  padding: 18px 40px;
  max-width: 320px;
  width: 100%;
  color: #eaeaf0;
  font-size: 20px;
  font-weight: 500;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, #2a284d00, #2a2847);
  /* box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.4),
    -4px -4px 10px rgba(255, 255, 255, 0.05),
    inset 1px 1px 2px rgba(255, 255, 255, 0.1); */
  box-shadow:
    inset 2px 2px 15px rgba(0, 0, 0, 0.4),
    inset 9px -8px 6px rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.neo-btn .btn-title {
  margin: 0 auto;
}

.neo-btn span {
  pointer-events: none;
}

.neo-btn .arrow {
  font-size: 23px;
  transition: transform 0.3s ease;
}

/* Hover effect */
.neo-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    10px 10px 20px rgba(0, 0, 0, 0.5),
    -6px -6px 12px rgba(255, 255, 255, 0.08),
    inset 1px 1px 3px rgba(255, 255, 255, 0.15);
}

.neo-btn:hover .arrow {
  transform: translateX(6px);
}

/* Active (pressed) */
.neo-btn:active {
  transform: translateY(1px);

  box-shadow:
    inset 4px 4px 10px rgba(0, 0, 0, 0.4),
    inset -2px -2px 6px rgba(255, 255, 255, 0.05);
}

.organization-section {
  background-image: url("./assets/organization-sec-bg.png");
  background-size: cover;
  position: relative;
  padding: 267px 0 56px;
  color: white;
}

.organization-content-wrapper .organization-paragraph {
  font-weight: 400;
  font-size: 36px;
  line-height: 70px;
  letter-spacing: 0;
  text-align: center;
}

.organization-content-wrapper .organization-paragraph .highlight {
  font-size: 48px;
  color: #bec08f;
}

.profile-section .hero-subtitle {
  font-family: var(--secondary-font-family);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.2em;
  text-align: center;
}

.profile-section .message-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 35px;
  color: var(--primary-color);
}

.profile-section .message-text .highlight {
  font-weight: 800;
}

.profile-section .hero-content {
  padding-inline-start: clamp(2rem, 15vw, 20rem);
}

.profile-section .hero-subtitle {
  margin-bottom: 0;
  text-align: start;
}

.profile-section .message-container {
  padding-inline-start: clamp(2rem, 15vw, 19rem);
  padding-inline-end: 2rem;
}

.profile-section .message-decorations {
  position: absolute;
  right: 0;
  z-index: -1;
  top: clamp(100px, 15vh, 178px);
}

.profile-section .personal-message-section {
  padding-top: clamp(80px, 10vh, 130px);
}

.intro-section {
  background-image: url("./assets/intro-bg.svg");
  background-size: cover;
  position: relative;
  padding: 360px 0 0px;
  background-color: white;
  color: white;
  overflow-x: hidden;
}

.intro-section .strength-item {
  padding-inline-start: clamp(2rem, 40vw, 673px);
  padding-bottom: 18px;
}

.intro-section .strength-content {
  padding-top: 18px;
}

.intro-section .strength-item:first-child {
  border-top: 1px solid white;
}

.intro-section .strength-title {
  padding-inline-start: clamp(2rem, 40vw, 673px);
  margin: 0;
}

.intro-section .strength-items {
  gap: 0px;
  width: 100%;
}

.intro-section .strength-items .strength-item:first-child::before {
  left: clamp(200px, 35vw, 630px);
  top: -310px;
}

.intro-section .strength-title.bold {
  font-weight: 800;
  font-size: 24px;
}

.intro-section .strength-description.bold {
  font-weight: 800;
  font-size: 18px;
  padding-left: 10px;
}

.intro-section .strength-header {
  margin-bottom: 28px;
}

.intro-section .strength-description {
  line-height: 2.3;
}

.intro-section .strength-description.bold::before {
  content: "";
  position: absolute;
  top: 52%;
  /* transform: translateY(-50%); */
  left: 0px;
  width: 4px;
  height: 16px;
  background-color: white;
}

.intro-section .profile-floating {
  position: absolute;
  top: clamp(100px, 30vh, 324px);
  left: clamp(20px, 20vw, 311px);
  height: clamp(150px, 30vw, 343px);
  width: clamp(150px, 30vw, 343px);
  z-index: 9;
}

.profile-tag-circle {
  position: absolute;
  top: clamp(60px, 10vh, 130px);
  left: clamp(20px, 18vw, 240px);
  width: clamp(150px, 20vw, 264px);
  height: clamp(150px, 20vw, 264px);
  /* background: radial-gradient(
      circle at 35% 25%,
      rgba(255, 255, 255, 0.25) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #2a4b63 0%, #162a39 100%); */
  background-color: #28304c6b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 5;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-align: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-tag-circle span:first-child {
  font-family: var(--secondary-font-family);
  font-size: clamp(10px, 1.2vw, 14px);
  letter-spacing: 0.3em;
  margin-bottom: 8px;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 400;
}

.profile-tag-circle span:last-child {
  font-family: var(--font-family);
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 300;
  /* letter-spacing: 0.05em; */
}

.intro-section::before {
  display: none;
}

.intro-section .strength-item-size {
  max-width: unset;
}

.profile-section .organization-section {
  background-color: transparent;
  z-index: 9;
  width: 100%;
}

.intro-section .right-circle-section {
  position: absolute;
  top: 300px;
  right: -100px;
  width: 450px;
  height: 450px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid white;
  border-radius: 50%;
}

.flow-section {
  width: 100%;
  max-width: 1400px;
  padding: 130px 20px 110px;
  /* background: white; */
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

/* Label */
.flow-label {
  font-family: var(--secondary-font-family);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

/* Title */
.flow-title {
  font-family: var(--font-family);
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 56px;
}

.flow-title strong {
  font-weight: 700;
}

/* Steps container */
.steps-track {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  flex-wrap: wrap;
  /* justify-content: center; */
}

/* Each step unit */
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* flex: 1; */
  position: relative;
}

/* Circle */
.step-circle {
  width: var(--step-size);
  height: var(--step-size);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  cursor: default;
}

.step-circle:hover {
  transform: scale(1.07);
}

/* First step — filled */
.step:nth-child(1) .step-circle {
  background: var(--navy);
  border: none;
  box-shadow: 0 6px 20px rgba(30, 42, 74, 0.28);
}

.step:nth-child(1) .step-num,
.step:nth-child(1) .step-word {
  color: #fff;
}

/* Other steps — outlined */
.step:not(:nth-child(1)) .step-circle {
  background: transparent;
  border: 1.5px solid var(--navy);
}

.step:not(:nth-child(1)) .step-num,
.step:not(:nth-child(1)) .step-word {
  color: var(--navy);
}

.step-word {
  font-family: var(--secondary-font-family);
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.step-num {
  font-family: var(--secondary-font-family);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* Step label */
.step-label {
  margin-top: 20px;
  font-family: var(--font-family);
  font-size: clamp(18px, 1.2vw, 13.5px);
  color: var(--navy);
  text-align: center;
  /* letter-spacing: 0.2em; */
  line-height: 1.5;
  white-space: nowrap;
}

/* Connector (chevron arrow) between steps */
.connector {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: calc(var(--step-size) / 2 - 10px); */
  flex-shrink: 0;
  width: clamp(20px, 3vw, 48px);
}

.connector svg {
  width: clamp(14px, 2.5vw, 22px);
  height: auto;
  opacity: 0.45;
}

.contact-page {
  font-family: var(--font-family);
  /* background: linear-gradient(
    135deg,
    var(--bg-gradient-start) 0%,
    var(--bg-gradient-mid) 50%,
    var(--bg-gradient-end) 100%
  );
  min-height: 100vh; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 300px 0 0;
}

/* ─── Page Header ───────────────────────────────── */
.contact-page .page-header {
  text-align: center;
  margin-bottom: 32px;
}

.contact-page .page-header .section-label {
  font-family: var(--secondary-font-family);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: white;
  display: block;
  margin-bottom: 20px;
}

.contact-page .page-header .page-title {
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: 400;
  color: white;
}

/* ─── Card ──────────────────────────────────────── */
.contact-page .card {
  background: var(--card-bg);
  border-radius: 0;
  box-shadow: var(--card-shadow);
  width: 100%;
  max-width: 865px;
  padding: 70px 60px;
  animation: fadeUp 0.55s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Form ──────────────────────────────────────── */
.contact-page .card .contact-form {
  width: 100%;
}

/* ─── Form Group ────────────────────────────────── */
.contact-page .card .contact-form .form-group {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-page .card .contact-form .form-group:last-of-type {
  margin-bottom: 28px;
}

/* ─── Label Wrap ────────────────────────────────── */
.contact-page .card .contact-form .form-group .form-label-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 190px;
  padding-top: 10px;
  flex-shrink: 0;
}

.contact-page .card .contact-form .form-group .form-label-wrap .form-label {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color);
  white-space: nowrap;
  letter-spacing: 0.2em;
}

.contact-page .card .contact-form .form-group .form-label-wrap .badge-required {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  background: var(--badge-bg);
  color: var(--badge-text);
  padding: 2px 7px;
  border-radius: 30px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* ─── Control Wrap ──────────────────────────────── */
.contact-page .card .contact-form .form-group .form-control-wrap {
  flex: 1;
}

/* ─── Inputs ────────────────────────────────────── */
.contact-page
  .card
  .contact-form
  .form-group
  .form-control-wrap
  input[type="text"],
.contact-page
  .card
  .contact-form
  .form-group
  .form-control-wrap
  input[type="email"],
.contact-page
  .card
  .contact-form
  .form-group
  .form-control-wrap
  input[type="tel"],
.contact-page .card .contact-form .form-group .form-control-wrap textarea {
  font-family: var(--font-family);
  font-size: 14px;
  width: 100%;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: var(--input-radius);
  padding: 10px 14px;
  color: var(--input-text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

/* ─── Placeholders ──────────────────────────────── */
.contact-page
  .card
  .contact-form
  .form-group
  .form-control-wrap
  input[type="text"]::placeholder,
.contact-page
  .card
  .contact-form
  .form-group
  .form-control-wrap
  input[type="email"]::placeholder,
.contact-page
  .card
  .contact-form
  .form-group
  .form-control-wrap
  input[type="tel"]::placeholder,
.contact-page
  .card
  .contact-form
  .form-group
  .form-control-wrap
  textarea::placeholder {
  color: var(--placeholder-color);
  font-family: var(--font-family);
}

/* ─── Focus States ──────────────────────────────── */
.contact-page
  .card
  .contact-form
  .form-group
  .form-control-wrap
  input[type="text"]:focus,
.contact-page
  .card
  .contact-form
  .form-group
  .form-control-wrap
  input[type="email"]:focus,
.contact-page
  .card
  .contact-form
  .form-group
  .form-control-wrap
  input[type="tel"]:focus,
.contact-page
  .card
  .contact-form
  .form-group
  .form-control-wrap
  textarea:focus {
  border-color: var(--input-focus-border);
  box-shadow: 0 0 0 3px rgba(107, 127, 163, 0.15);
  background: #fafafa;
}

/* ─── Textarea ──────────────────────────────────── */
.contact-page .card .contact-form .form-group .form-control-wrap textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* ─── Postal Input ──────────────────────────────── */
.contact-page .card .contact-form .form-group .form-control-wrap .input-postal {
  max-width: 160px;
}

/* ─── Checkbox Row ──────────────────────────────── */
.contact-page .card .contact-form .checkbox-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-page .card .contact-form .checkbox-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--checkbox-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.contact-page .card .contact-form .checkbox-row .checkbox-label {
  font-family: var(--font-family);
  font-size: 16px;
  color: #444;
  font-weight: 400;
  cursor: pointer;
}

.contact-page .card .contact-form .checkbox-row .checkbox-label .privacy-link {
  font-family: var(--font-family);
  color: var(--link-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-page .card .contact-form .form-message {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 3px;
  text-align: center;
}

.contact-page .card .contact-form .form-message--success {
  color: #0d4f2c;
  background: #e8f5ec;
  border: 1px solid #a8d5ba;
}

.contact-page .card .contact-form .form-message--error {
  color: #6b1c1c;
  background: #fce8e8;
  border: 1px solid #e0a0a0;
}

/* ─── Submit Button ─────────────────────────────── */
.contact-page .card .contact-form .btn-submit {
  font-family: var(--font-family);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  padding: 13px 28px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--btn-text);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-border);
  border-radius: 3px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.contact-page .card .contact-form .btn-submit:hover {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-text);
  transform: translateY(-1px);
}

.contact-page .card .contact-form .btn-submit:active {
  transform: translateY(0);
}

.contact-page .card .contact-form .btn-submit .btn-text {
  font-family: var(--font-family);
  font-size: 18px;
  margin: 0 auto;
}

.contact-page .card .contact-form .btn-submit .arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.contact-page .card .contact-form .btn-submit:hover .arrow {
  transform: translateX(4px);
}
.contact-page .card-main-wrapper {
  padding-inline: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.services-info-container {
  padding: 90px 20px 0;
}
.services-info-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 60px;
  max-width: 1680px;
  margin: 0 auto;
}
.services-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.services-info-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 36px;
}
.services-info-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 35px;
}
.services-info-container img {
  width: 100%;
}
.services-description-section {
  background-image: url("./assets/intro-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 280px 0px 100px;

  color: white;
  overflow-x: hidden;
}
.services-description-section .s1-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  text-align: center;
  padding-inline: 20px;
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
}
.services-description-section .s2-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  text-align: center;
  padding-inline: 20px;
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
}
.services-description-section .s1-sec h3,
.services-description-section .s2-sec h3 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 36px;
}
.services-description-section .s1-sec p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 35px;
}
.services-description-section .s2-sec img {
  width: 100%;
}
.horizontal-line-with-circle {
  width: 100%;
  height: 1px;
  background-color: white;
  position: relative;
  margin: 100px 0px 100px;
}
.horizontal-line-with-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid white;
}

.table-container {
  width: 100%;
  overflow-x: auto;
  font-family: var(--font-family);
  height: 100%;
}

.info-table-section {
  padding: 40px 0 0;
  background-image: url("./assets/services-bw.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
  height: 70vh;
  z-index: 10;
}
.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  color: white;
  height: calc(100% - 100px);
}

/* Header */
.custom-table thead th {
  font-weight: 600;
  padding: 16px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  min-width: 200px;
}

/* Body */
.custom-table tbody td {
  padding: 16px;
  vertical-align: top;
  line-height: 1.6;
  border-right: 1px solid #fff;
}

/* Remove last border */
.custom-table th:last-child,
.custom-table td:last-child {
  border-right: none;
}

.seminar-section {
  padding: 0px 0 0;
  position: relative;
  /* min-height: 70vh; */
  z-index: 1;
  margin-top: -85px;
  border-bottom: 1px solid black;
  padding: 0 0 150px;
}
.seminar-decorations {
  position: absolute;
  top: -200px;
  right: -300px;
  z-index: -1;
  color: var(--primary-color);
}
.seminar-decorations img {
  height: 100%;
}

.seminar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  text-align: center;
  padding-inline: 20px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.seminar-container h3,
.theme-section h3 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 36px;
  color: var(--primary-color);
}
.theme-section {
  padding: 100px 20px;
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.theme-section img {
  width: 100%;
}
.seminar-container p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 35px;
  color: var(--primary-color);
}
.subject-section {
}
.subject-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  color: var(--primary-color);
  padding: 30px 20px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  text-align: center;
}
.subject-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 35px;
  color: var(--primary-color);
  padding: 30px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.subject-table {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  padding-inline: 20px;
}
.participating-section {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 35px;
  color: var(--primary-color);
  padding: 60px;
  max-width: 840px;
  margin: 0 auto;
  border: 1px solid var(--primary-color);
  margin-top: 80px;
  position: relative;
  /* }
.participating-section::before {
  content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 250px;
 height: 250px;
 background-image: url("./assets/participate.svg");
 background-size: contain;
 background-repeat: no-repeat;
 background-position: center;
 /* z-index: -1; */
}
.fancy-circle {
  position: absolute !important;
  top: -108px;
  left: -208px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle at 30% 30%, #264c44c4 0%, #262f4c 100%);
  backdrop-filter: blur(2px);

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: var(--font-family);
  color: #fff;
  font-weight: 400;
}

/* Noise layer */
.fancy-circle::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image: repeating-radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(0, 0, 0, 0.03) 1px
  );

  mix-blend-mode: overlay;
  opacity: 0.3;
}
.participating-main-wrapper {
  padding: 0px 20px 0 180px;
}

/* Section */
.subject-table-services {
  position: relative;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  font-family: var(--font-family);
  max-width: 1100px;
  margin: 0 auto;
}

/* Wrapper */
.subject-table-services__wrapper {
  width: 100%;
  max-width: 1100px;
  position: relative;
  border: 1px solid var(--primary-color);
  background-color: white;
  box-shadow: 0px 0px 13px 0px #1a317d1c;
}

/* Title */
.subject-table-services__title {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

/* Table */
.subject-table-services__table {
  border-top: 1px solid var(--primary-color);
}

/* Row */
.subject-table-services__row {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-bottom: 1px solid var(--primary-color);
}

/* Label */
.subject-table-services__label {
  padding: 20px;
  font-weight: 600;
  font-size: 14px;
  border-right: 1px solid var(--primary-color);
  line-height: 35px;
}
.subject-table-services__label span {
  background-color: var(--primary-color);
  color: white;
  padding: 3px 7px;
}

/* Content */
.subject-table-services__content {
  padding: 20px;
  line-height: 1.8;
  font-size: 14px;
}

/* Remove last border */
.subject-table-services__row:last-child {
  border-bottom: none;
}

/* ===================== */
/* Responsive */
/* ===================== */

/* ===================== */
/* Decorative Circles */
/* ===================== */

.subject-table-services__circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* Left circle */
.subject-table-services__circle--left {
  width: 170px;
  height: 170px;
  top: 30px;
  left: -77px;
  border: 1px solid #2e3a59;
  z-index: 1;
}

/* Right gradient circle */
.subject-table-services__circle--right {
  width: 220px;
  height: 220px;
  bottom: 41px;
  right: -72px;

  background: radial-gradient(circle at 30% 30%, #8aa3b561, #5b6d804d);
  /* opacity: 0.4; */
  z-index: 1;
  backdrop-filter: blur(3px);
}

/* ─── Responsive — Mobile (≤ 480px) ────────────── */

/* --- UNIVERSAL RESPONSIVE STYLES --- */

@media (max-width: 1780px) {
  .intro-section .profile-floating {
    top: clamp(100px, 45vh, 324px);
    left: clamp(20px, 10vw, 311px);
    height: clamp(150px, 20vw, 343px);
    width: clamp(150px, 20vw, 343px);
    z-index: 9;
  }

  .intro-section .strength-items .strength-item:first-child::before {
    left: clamp(200px, 28vw, 630px);
  }

  .intro-section .strength-item,
  .intro-section .strength-title {
    padding-inline-start: 30vw;
  }

  .profile-tag-circle {
    top: clamp(60px, 7vw, 130px);
    left: clamp(20px, 4vw, 240px);
    width: clamp(150px, 18vw, 264px);
    height: clamp(150px, 18vw, 264px);
  }

  .intro-section .right-circle-section {
    top: 300px;
    right: -100px;
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 1600px) {
  .intro-section .profile-floating {
    top: clamp(100px, 45vh, 324px);
    left: clamp(20px, 10vw, 311px);
    height: clamp(150px, 18vw, 343px);
    width: clamp(150px, 18vw, 343px);
    z-index: 9;
  }
}

@media (max-width: 1440px) {
  .profile-section .hero-content {
    padding-inline-start: 5vw;
  }

  .profile-section .message-container {
    padding-inline-start: 5vw;
    padding-inline-end: 2rem;
  }

  .intro-section .strength-item,
  .intro-section .strength-title {
    padding-inline-start: 37vw;
  }

  .intro-section .strength-items .strength-item:first-child::before {
    left: clamp(200px, 25vw, 630px);
  }
}
@media (max-width: 1300px) {
  .fancy-circle {
    width: 200px;
    height: 200px;
    font-size: 18px;
    left: -150px;
    top: -100px;
  }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 55px;
    font-weight: 400;
  }

  .message-decorations {
    display: none;
  }

  .message-container {
    flex-direction: column;
    padding: 0 3rem;
  }

  .message-title {
    font-size: 2.5rem;
  }

  .message-decorations {
    width: 100%;
    margin-top: 40px;
    height: 300px;
  }

  .strength-title {
    font-size: 2.8rem;
  }

  .strength-number {
    font-size: 3rem;
    min-width: 120px;
  }

  .strength-number::before,
  .strength-number::after {
    width: 140px;
    height: 140px;
  }

  .profile-section .hero-content {
    padding-inline-start: 0;
    display: flex;
    align-items: center;
  }
  .hero-section.contact .hero-content {
    max-width: 500px;
  }

  .profile-section .hero-subtitle {
    margin-bottom: 0;
    text-align: center;
  }

  .profile-section .message-container {
    padding: 0px 30px 0 30px;
  }

  .profile-section .personal-message-section {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  .steps-track {
    justify-content: center;
  }
}

/* Tablet Portrait & Mobile (Below 1024px) */
@media (max-width: 1024px) {
  .profile-section .hero-content {
    padding-inline-start: 0;
  }
  .hero-section.contact .hero-content {
    align-items: center;
    display: flex;
  }

  .profile-section .hero-subtitle {
    text-align: center;
    font-size: clamp(24px, 5vw, 40px);
  }

  .message-container {
    flex-direction: column;
    padding: 0 2rem;
    align-items: center;
  }

  .profile-section .message-container {
    padding: 0 1.5rem;
  }

  .message-content {
    max-width: 800px;
    width: 100%;
  }

  .message-decorations {
    display: none;
  }

  /* Intro / Strength Section Reset */
  .intro-section {
    padding: 80px 0px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .intro-section .profile-floating {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 0 auto 30px;
    width: min(300px, 70vw);
    height: auto;
    display: block;
    z-index: 10;
  }

  .profile-tag-circle {
    display: none;
    /* position: relative;
    top: 0;
    left: 0;
    margin: 0 auto 30px;
    width: min(200px, 60vw);
    height: min(200px, 60vw);
    display: flex;
    z-index: 11; */
  }

  .intro-section::before {
    display: none;
  }

  .intro-section .strength-header {
    width: 100%;
    margin-bottom: 40px;
  }

  .intro-section .strength-title {
    padding-inline: 0;
    margin: 0 auto;
    font-size: clamp(20px, 4vw, 25px);
    width: 100%;
  }

  /* .intro-section .strength-items {
    width: 100%;
    max-width: 800px;
    gap: 40px;
  } */

  .intro-section .strength-item {
    padding-inline: 0;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid white;
    padding-bottom: 15px;
  }

  .intro-section .strength-content {
    padding-top: 15px;
  }

  .intro-section .strength-item:first-child {
    border-top: 1px solid white;
    /* padding-top: 20px; */
  }

  .intro-section .strength-items .strength-item:first-child::before {
    display: none;
  }

  .intro-section .strength-item-size {
    flex-direction: column;
    gap: 10px;
    padding-inline: 20px;
  }

  .strength-content {
    padding-top: 0;
  }

  .strength-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .strength-description.bold::before {
    display: none;
  }

  /* UI Components */
  .btn-wrapper,
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .glass-btn,
  .neo-btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-person-img {
    position: relative;
    bottom: -10px;
  }
  .hero-section.contact .hero-person-img {
    bottom: -10px;
  }

  .hero-image-wrapper {
    position: relative;
  }

  .hero-person-main {
    max-height: 100%;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding: 4rem 2rem;
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .intro-section .right-circle-section {
    top: 600px;

    width: 300px;
    height: 300px;
  }
  .contact-page {
    padding: 231px 0px 0;
  }
  .services-info-subtitle {
    font-size: 25px;
  }
  .services-info-wrapper,
  .services-info-container {
    gap: 40px;
  }
  .services-description-section {
    padding: 200px 0px 0;
  }
  .services-description-section .s1-sec h3,
  .services-description-section .s2-sec h3,
  .seminar-container h3,
  .theme-section h3 {
    font-size: 25px;
  }
  .services-description-section .s1-sec p,
  .seminar-container p {
    font-size: 14px;
  }
  .custom-table thead th {
    padding: 14px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
  }
  .seminar-container {
    gap: 30px;
  }

  .custom-table tbody td {
    padding: 14px;
  }
  .horizontal-line-with-circle::after {
    height: 200px;
    width: 200px;
  }
  .seminar-section {
    padding: 40px 0 40px;
  }
  .theme-section {
    padding: 60px 20px;
  }
  .seminar-decorations {
    display: none;
  }
  .fancy-circle {
    width: 180px;
    height: 180px;
    font-size: 18px;
    left: -130px;
    top: -80px;
  }
  .participating-main-wrapper {
    padding: 0px 20px 0 119px;
  }
  .participating-section {
    line-height: 28px;
    font-size: 15px;
    padding: 40px;
  }
}

@media (max-width: 900px) {
  .header-container {
    justify-content: space-between;
  }

  .desktop-nav {
    display: none;
  }

  .logo-title {
    font-size: 12px;
  }

  /* Show hamburger icon on right side */
  .hamburger-btn {
    display: block;
  }

  .hero-section,
  .hero-container {
    min-height: 78vh;
  }

  .qm-btn {
    padding: 9px 16px;
    font-size: 13px;
  }

  .profile-section .hero-section,
  .hero-container {
    min-height: 40vh;
  }
}

@media (max-width: 768px) {
  .intro-section .right-circle-section {
    display: none;
  }

  .strength-items .strength-item:first-child::before {
    display: none;
  }

  .personal-message-section {
    padding-bottom: 10px;
  }

  .btn-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .glass-btn {
    gap: 4px;
    padding: 15px 20px;
    font-size: 16px;
  }

  .hero-title {
    font-size: 35px;
    line-height: 40px;
    letter-spacing: 0.05em;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .message-container {
    padding: 0 2rem;
  }

  .message-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .message-text {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .message-decorations {
    height: 250px;
  }

  .strength-title {
    font-size: 2rem;
    padding-inline: 3rem;
  }

  .strength-header {
    margin-bottom: 40px;
  }

  .strength-item {
    flex-direction: column;
    gap: 20px;
  }

  .strength-number {
    font-size: 2rem;
    margin-top: 20px;
  }

  .strength-number::before {
    width: 120px;
    height: 120px;
  }

  .strength-number::after {
    width: 120px;
    height: 120px;
  }

  .strength-label-box {
    font-size: 12px;
  }

  .strength-description {
    font-size: 11px;
  }

  .intro-section .strength-description {
    font-size: 12px;
  }

  .services-section .service-title h2 {
    font-size: 20px;
    margin-top: 10px;
  }

  .neo-btn {
    gap: 10px;
    padding: 12px 25px;
    max-width: 210px;
    font-size: 14px;
  }

  .neo-btn .arrow {
    font-size: 19px;
  }

  .organization-content-wrapper .organization-paragraph {
    font-size: 30px;
    line-height: 50px;
  }

  .organization-content-wrapper .organization-paragraph .highlight {
    font-size: 40px;
  }

  .organization-section {
    padding: 218px 0 120px;
  }

  .hero-subtitle {
    font-size: 20px;
    line-height: 30px;
  }

  .profile-section .hero-subtitle {
    font-size: 30px;
  }

  .profile-section .personal-message-section {
    padding-bottom: 0px;
  }

  .flow-section {
    padding: 48px 32px 56px;
  }

  .flow-title {
    margin-bottom: 40px;
  }

  .steps-track {
    flex-wrap: wrap;
    row-gap: 36px;
    justify-content: center;
  }

  .step {
    flex: 0 0 calc(33.33% - 16px);
    max-width: 130px;
  }

  /* Add small arrows via pseudo-elements for wrapped layout */
  .step:not(:last-child)::after {
    content: none;
  }
  .contact-page .card .contact-form .form-group .form-label-wrap .form-label {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .services-info-container {
    padding: 70px 20px 0;
  }
  .info-table-section {
    background: #262f4c;
    height: auto;
  }
  .custom-table tbody td {
    padding-bottom: 70px;
  }
  .seminar-section {
    margin-top: 0;
  }
  .fancy-circle {
    width: 120px;
    height: 120px;
    font-size: 12px;
    left: -100px;
    top: -60px;
  }
  .participating-main-wrapper {
    padding: 0px 20px 0 119px;
  }
  .participating-section {
    line-height: 28px;
    font-size: 14px;
    padding: 22px;
  }
  .subject-table-services__row {
    grid-template-columns: 1fr;
  }

  .subject-table-services__label {
    border-right: none;
    border-bottom: 1px solid var(--primary-color);
  }
  .subject-table-services__circle--right {
    width: 130px;
    height: 130px;
    bottom: 0;
    right: -30px;
  }
}

/* ─── Responsive — Tablet (≤ 640px) ────────────── */
@media (max-width: 640px) {
  .contact-page .card {
    padding: 36px 32px 40px;
  }

  .conta.contact-page
    .card
    .contact-form
    .form-group
    .form-label-wrap
    .form-labelct-page
    .page-header
    .page-title {
    font-size: 24px;
  }

  .contact-page .card .contact-form .form-group .form-label-wrap {
    min-width: 95px;
  }
}

@media screen and (max-width: 500px) {
  .quiet-moments-buttons {
    margin-top: 23px;
    flex-direction: column;
    gap: 8px;
  }
}

/* Specific Small Mobile (Below 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .message-title {
    font-size: 22px;
  }

  .message-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .flow-section {
    padding: 36px 20px 0px;
  }

  .flow-title {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .steps-track {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: 100%;
    max-width: 300px;
    padding: 20px 0;
  }

  .step-label {
    margin-top: 0;
    text-align: left;
    white-space: normal;
    font-size: 14px;
  }

  .connector {
    display: flex;
    padding-top: 0;
    /* padding-left: 35px; */
    width: 100%;
    max-width: 300px;
    height: 24px;
    align-items: center;
    justify-content: center;
  }

  .connector svg {
    transform: rotate(90deg);
    width: 18px;
  }
  .connector img {
    transform: rotate(90deg);
  }

  .contact-page {
    padding: 270px 0px 0;
    justify-content: flex-start;
  }

  .contact-page .page-header {
    margin-bottom: 24px;
  }

  .contact-page .page-header .page-title {
    font-size: 20px;
  }

  .contact-page .card {
    padding: 28px 20px 32px;
  }

  .contact-page .card .contact-form .form-group {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
  }

  .contact-page .card .contact-form .form-group .form-label-wrap {
    padding-top: 0;
    min-width: unset;
  }

  .contact-page .card .contact-form .form-group .form-control-wrap {
    width: 100%;
  }

  .contact-page
    .card
    .contact-form
    .form-group
    .form-control-wrap
    .input-postal {
    max-width: 100%;
  }

  .contact-page .card .contact-form .form-group .form-control-wrap textarea {
    min-height: 100px;
  }

  .contact-page .card .contact-form .btn-submit {
    max-width: 100%;
  }

  .contact-page .card .contact-form .btn-submit .btn-text {
    font-size: 14px;
  }
  .subject-table-services__title {
    font-size: 20px;
  }

  .subject-table-services__label,
  .subject-table-services__content {
    padding: 16px;
    font-size: 13px;
  }
}

/* --- RE-RESTORED NAVBAR STYLES --- */
/* Responsive adjustments for personal message section */

@media (max-width: 400px) {
  .profile-section .hero-subtitle {
    font-size: 25px;
  }

  .hero-title {
    font-size: 25px;
    margin-bottom: 30px;
  }

  .mobile-drawer {
    width: 100%;
    max-width: 300px;
  }

  .logo-title {
    font-size: 10px;
  }

  .strength-item {
    padding-inline: 1rem;
    padding-bottom: 40px;
  }

  .strength-items,
  .strength-item-size {
    gap: 20px;
  }

  .organization-content-wrapper .organization-paragraph {
    font-size: 20px;
    line-height: 50px;
  }

  .organization-content-wrapper .organization-paragraph .highlight {
    font-size: 30px;
  }

  .organization-section {
    padding: 175px 0 90px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 30px;
  }

  .message-text {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .strength-section {
    padding: 135px 0 0;
  }
}

/* ─── Responsive — XSmall (≤ 360px) ────────────── */
@media (max-width: 360px) {
  .contact-page .page-header .page-title {
    font-size: 18px;
  }

  .contact-page .card .contact-form .form-group .form-label-wrap .form-label {
    font-size: 12px;
  }

  .contact-page
    .card
    .contact-form
    .form-group
    .form-control-wrap
    input[type="text"],
  .contact-page
    .card
    .contact-form
    .form-group
    .form-control-wrap
    input[type="email"],
  .contact-page
    .card
    .contact-form
    .form-group
    .form-control-wrap
    input[type="tel"],
  .contact-page .card .contact-form .form-group .form-control-wrap textarea {
    font-size: 13px;
    padding: 9px 12px;
  }
}
