@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url("https://yorinthavelq.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://yorinthavelq.com/fonts/Gilroy-Regular.woff2") format("woff2");
}
:root {
  --light-color: #ffffff;
  --dark-color: #000000;
  --primary-color: #123453;
  --accent-color: #bc8c62;
  --warning-color: red;
}

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

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

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--dark-color);
}

body.lock {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

a {
  transition: all 0.3s ease;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--dark-color);
  width: 100%;
  transition: all 0.3s ease;
}

.error-message {
  font-size: 0.9rem;
  color: red;
  font-weight: 500;
}


/* 1 */
.alert-panel {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  padding: clamp(24px, 3vw, 32px) 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 2px solid #3b82f6;
  padding-top: 0 !important;
}

.alert-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  opacity: 0.6;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.alert-panel:hover::before {
  opacity: 0.8;
}

.alert-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.alert-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: clamp(16px, 2vw, 20px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.6s ease, background 0.3s ease;
}

.alert-content {
  color: #f1f5f9;
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(25px);
  animation: slideIn 0.8s ease-out 0.2s forwards;
}

.alert-icon {
  font-size: clamp(18px, 2.2vw, 20px);
  color: #3b82f6;
  animation: pulse 2s infinite ease-in-out;
}

.highlight-text {
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.alert-link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.alert-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #3b82f6, #93c5fd);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.alert-link:hover::after {
  width: 100%;
}

.alert-link:hover {
  color: #93c5fd;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .alert-panel {
    padding: clamp(16px, 2.5vw, 20px) 0;
  }

  .alert-content {
    font-size: clamp(13px, 1.7vw, 15px);
    gap: 8px;
  }

  .alert-icon {
    font-size: clamp(16px, 2vw, 18px);
  }
}

@media (max-width: 480px) {
  .alert-content-wrapper {
    padding: clamp(12px, 1.8vw, 16px);
  }

  .alert-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* header */

.prestige-header {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: clamp(15px, 2vw, 20px) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.prestige-header:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 30px);
  animation: fadeInDown 0.8s ease-out;
}

.prestige-logo {
  display: block;
  width: clamp(40px, 5vw, 60px);
  transition: transform 0.3s ease;
}

.prestige-logo:hover {
  transform: scale(1.08);
}

.logo-img {
  width: 100%;
  height: auto;
}

.main-navigation {
  display: none;
}

@media (min-width: 1200px) {
  .main-navigation {
    display: block;
  }
}

.nav-items {
  display: flex;
  align-items: center;
  gap: clamp(25px, 3.5vw, 35px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-anchor {
  color: #1f2937;
  text-decoration: none;
  font-size: clamp(15px, 1.8vw, 16px);
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-anchor::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
  transition: width 0.3s ease;
}

.nav-anchor:hover {
  color: #1d4ed8;
}

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

.action-group {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 25px);
}

.primary-button {
  display: inline-block;
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 25px);
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 16px);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.4s ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.primary-button:hover::before {
  left: 100%;
}

.burger {
  flex-shrink: 0;
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.burger:hover {
  transform: scale(1.1);
}

.burger::before,
.burger::after,
.burger span {
  content: '';
  width: 100%;
  height: 3px;
  background-color: #1d4ed8;
  transition: all 0.4s ease;
}

.burger::before {
  content: "";
}

.burger::after {
  content: "";
}

.burger.is-open::before {
  transform: translateY(9.5px) rotate(45deg);
}

.burger.is-open::after {
  transform: translateY(-9.5px) rotate(-45deg);
}

.burger.is-open span {
  transform: scale(0);
}

@media (min-width: 1200px) {
  .burger {
    display: none;
  }
}

.mobile-navigation {
  display: none;
}

.mobile-navigation.is-open {
  display: block;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(249, 250, 251, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  overflow-y: auto;
  animation: slideInFromRight 0.5s ease-out forwards;
}

.mobile-nav-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.mobile-nav-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mobile-navigation.is-open .mobile-nav-item:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-navigation.is-open .mobile-nav-item:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-navigation.is-open .mobile-nav-item:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-navigation.is-open .mobile-nav-item:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-navigation.is-open .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-anchor {
  color: #111827;
  text-decoration: none;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-nav-anchor:hover {
  color: #1d4ed8;
  transform: scale(1.05);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-layout {
    gap: clamp(15px, 3vw, 20px);
  }

  .primary-button {
    padding: clamp(8px, 1.2vw, 10px) clamp(15px, 2.5vw, 20px);
    font-size: clamp(13px, 1.7vw, 15px);
  }

  .prestige-logo {
    width: clamp(35px, 4.5vw, 50px);
  }
}

@media (max-width: 480px) {
  .mobile-nav-items {
    gap: 20px;
  }

  .mobile-nav-anchor {
    font-size: clamp(20px, 4.5vw, 28px);
  }
}

/* --------------------hero---------------------- */

.prestige-banner {
  padding: clamp(100px, 18vh, 200px) 0;
  position: relative;
  color: #ffffff;
  background-image: url(../img/hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.5s ease;
}

.prestige-banner:hover {
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5);
}

.prestige-banner::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 25, 47, 0.9) 0%,
    rgba(10, 25, 47, 0.7) 50%,
    rgba(10, 25, 47, 0.1) 100%
  );
  z-index: -1;
  opacity: 0.95;
  transition: opacity 0.6s ease;
}

.prestige-banner:hover::before {
  opacity: 1;
}

.prestige-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

.prestige-banner:hover::after {
  opacity: 0.7;
}

.banner-wrapper {
  max-width: 800px;
  position: relative;
  z-index: 1;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.prestige-banner:hover .banner-wrapper {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.banner-title {
  font-size: clamp(40px, 7vw, 60px);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(40px);
  animation: riseUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.banner-description {
  font-size: clamp(18px, 2.8vw, 22px);
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(40px);
  animation: riseUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.banner-cta {
  display: inline-block;
  padding: clamp(12px, 1.8vw, 14px) clamp(28px, 4vw, 32px);
  color: #ffffff;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: riseUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards;
  max-width: 250px;
}

.banner-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: 1;
}

.banner-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.4);
}

.banner-cta:hover::before {
  left: 100%;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .prestige-banner {
    padding: clamp(60px, 12vh, 100px) 0;
  }

  .banner-wrapper {
    max-width: 100%;
    padding: clamp(16px, 2.5vw, 20px);
  }

  .banner-title {
    font-size: clamp(32px, 9vw, 48px);
  }

  .banner-description {
    font-size: clamp(16px, 3.5vw, 20px);
  }

  .banner-cta {
    padding: clamp(10px, 1.5vw, 12px) clamp(24px, 3.5vw, 28px);
    font-size: clamp(14px, 2vw, 16px);
  }
}

@media (max-width: 480px) {
  .banner-title {
    text-align: center;
  }

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

  .banner-cta {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}

/* ------------rating----------------------- */

.elite-reviews {
  background: linear-gradient(145deg, #f3f4f6 0%, #e5e7eb 100%);
  padding: clamp(30px, 6vw, 50px) 0;
  max-width: 1000px;
  border-radius: 40px;
  margin: -40px auto 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.elite-reviews:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .elite-reviews {
    margin-top: 0;
  }
}

.reviews-gallery {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(15px, 4vw, 25px);
}

@media (max-width: 768px) {
  .reviews-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 360px) {
  .reviews-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.review-panel {
  background: #ffffff;
  padding: clamp(15px, 3.5vw, 25px);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 140px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: elevateIn 1s ease-out forwards;
}

.review-panel:nth-child(1) {
  animation-delay: 0.15s;
}

.review-panel:nth-child(2) {
  animation-delay: 0.3s;
}

.review-panel:nth-child(3) {
  animation-delay: 0.45s;
}

.review-panel:nth-child(4) {
  animation-delay: 0.6s;
}

.review-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
  .review-panel {
    min-height: 130px;
    max-width: 180px;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .review-panel {
    min-height: 110px;
    max-width: 100%;
  }
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.panel-logo {
  height: clamp(24px, 3.5vw, 28px);
  object-fit: contain;
  transition: transform 0.4s ease;
}

.panel-top:hover .panel-logo {
  transform: scale(1.15);
}

.panel-label {
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 600;
  color: #1e293b;
}

@media (max-width: 1200px) {
  .panel-label {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .panel-label {
    font-size: 13px;
  }
}

.panel-score {
  display: flex;
  align-items: center;
  gap: 6px;
}

.score-value {
  margin-right: 10px;
  font-weight: 800;
  font-size: clamp(20px, 3.5vw, 26px);
  color: #1e293b;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1200px) {
  .score-value {
    font-size: 20px;
  }
}

@media (max-width: 360px) {
  .score-value {
    font-size: 18px;
  }
}

.stars-group {
  display: flex;
  gap: 5px;
}

.star-icon {
  width: clamp(16px, 2.2vw, 20px);
  height: clamp(16px, 2.2vw, 20px);
  transition: transform 0.4s ease, color 0.4s ease;
}

.star-icon.full {
  color: #fbbf24;
  fill: #fbbf24;
}

.star-icon.half {
  color: #fbbf24;
}

.review-panel:hover .star-icon {
  transform: scale(1.15);
  color: #f59e0b;
  fill: #f59e0b;
}

@media (max-width: 360px) {
  .star-icon {
    width: 16px;
    height: 16px;
  }
}

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

/* Specific adjustments for 320-360px */
@media (min-width: 320px) and (max-width: 360px) {
  .elite-reviews {
    padding: 20px 0;
  }
  .reviews-gallery {
    gap: 10px;
  }
  .review-panel {
    padding: 12px;
    min-height: 100px;
  }
  .panel-top {
    gap: 8px;
    margin-bottom: 10px;
  }
  .panel-logo {
    height: 22px;
  }
  .panel-score {
    gap: 4px;
  }
}
/* ------------------------about------------------------------ */

.executive-overview {
  padding: clamp(60px, 12vh, 100px) 0;
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.executive-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(29, 78, 216, 0.08) 0%, transparent 80%);
  z-index: 0;
}

.overview-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(32px, 5.5vw, 44px);
  font-weight: 800;
  color: #1e293b;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-30px);
  animation: descendIn 1s ease-out forwards;
}

.features-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(25px, 4vw, 35px);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .features-matrix {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .features-matrix {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .features-matrix {
    gap: 15px;
  }
}

.feature-module {
  min-height: 450px;
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(20px, 2.5vw, 25px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: ascendIn 1s ease-out forwards;
}

.feature-module:nth-child(1) { animation-delay: 0.15s; }
.feature-module:nth-child(2) { animation-delay: 0.3s; }
.feature-module:nth-child(3) { animation-delay: 0.45s; }
.feature-module:nth-child(4) { animation-delay: 0.6s; }
.feature-module:nth-child(5) { animation-delay: 0.75s; }
.feature-module:nth-child(6) { animation-delay: 0.9s; }

.feature-module:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .feature-module {
    min-height: 400px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .feature-module {
    min-height: 370px;
    padding: 15px;
  }
}

.module-visual {
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 18px;
}

.module-visual img {
  border-radius: 18px;
  display: block;
  object-fit: cover;
  width: 100%;
  height: clamp(220px, 32vw, 260px);
  transition: transform 0.6s ease;
}

.feature-module:hover .module-visual img {
  transform: scale(1.08);
}

@media (min-width: 320px) and (max-width: 360px) {
  .module-visual img {
    height: 200px;
  }
}

.module-caption {
  margin-bottom: 15px;
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 700;
  color: #1e293b;
}

@media (min-width: 320px) and (max-width: 360px) {
  .module-caption {
    font-size: 20px;
  }
}

.module-narrative {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(15px, 2.1vw, 17px);
  color: #475569;
  line-height: 1.7;
}

@media (min-width: 320px) and (max-width: 360px) {
  .module-narrative {
    font-size: 14px;
  }
}

.engagement-prompt {
  display: block;
  max-width: 180px;
  margin: 0 auto;
  padding: clamp(12px, 1.8vw, 14px) clamp(24px, 3.5vw, 28px);
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: ascendIn 1s ease-out 1s forwards;
}

.engagement-prompt::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.6s ease;
  z-index: 1;
}

.engagement-prompt:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.4);
}

.engagement-prompt:hover::before {
  left: 100%;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .executive-overview {
    padding: 50px 0;
  }
  .overview-title {
    font-size: clamp(28px, 7vw, 36px);
    margin-bottom: 40px;
  }
  .engagement-prompt {
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 24px);
    font-size: clamp(14px, 2vw, 16px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .executive-overview {
    padding: 40px 0;
  }
  .overview-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .features-matrix {
    margin-bottom: 30px;
  }
  .engagement-prompt {
    max-width: 160px;
    padding: 10px 20px;
    font-size: 14px;
  }
}


/* ----------------------services---------------------------- */

.elite-services {
  padding: clamp(60px, 12vh, 100px) 0;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.elite-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 35%, rgba(59, 130, 246, 0.15) 0%, transparent 80%);
  z-index: 0;
}

.services-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: clamp(32px, 5.5vw, 44px);
  font-weight: 800;
  color: #ffffff;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-30px);
  animation: slideDown 1s ease-out forwards;
}

.services-intro {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 400;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-30px);
  animation: slideDown 1s ease-out 0.3s forwards;
}

.services-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(25px, 4vw, 35px);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .services-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (min-width: 320px) and (max-width: 360px) {
  .services-layout {
    gap: 20px;
  }
}

.service-module {
  padding: clamp(30px, 4.5vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 320px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: riseUp 1s ease-out forwards;
}

.service-module:nth-child(1) { animation-delay: 0.15s; }
.service-module:nth-child(2) { animation-delay: 0.3s; }
.service-module:nth-child(3) { animation-delay: 0.45s; }
.service-module:nth-child(4) { animation-delay: 0.6s; }

.service-module:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
  .service-module {
    min-height: 300px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .service-module {
    min-height: 280px;
    padding: 25px;
  }
}

.service-module svg {
  color: #3b82f6;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.service-module:hover svg {
  transform: scale(1.15);
}

.module-title {
  margin-bottom: 20px;
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 700;
  color: #ffffff;
}

@media (min-width: 320px) and (max-width: 360px) {
  .module-title {
    font-size: 20px;
  }
}

.module-desc {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  color: #cbd5e1;
}

@media (min-width: 320px) and (max-width: 360px) {
  .module-desc {
    font-size: 14px;
  }
}

.highlight-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(25px, 4vw, 35px);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  animation: riseUp 1s ease-out 0.7s forwards;
}

@media (max-width: 768px) {
  .highlight-feature {
    flex-direction: column;
    gap: 25px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .highlight-feature {
    gap: 20px;
  }
}

.feature-visual {
  flex: 1;
  overflow: hidden;
  border-radius: 24px;
}

.feature-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.highlight-feature:hover .feature-visual img {
  transform: scale(1.08);
}

.feature-info {
  flex: 1;
}

.info-title {
  margin-bottom: 25px;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 800;
  color: #ffffff;
  max-width: 480px;
}

.info-title span {
  display: block;
  color: #3b82f6;
}

@media (min-width: 320px) and (max-width: 360px) {
  .info-title {
    font-size: 28px;
  }
}

.info-text {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 480px;
}

@media (min-width: 320px) and (max-width: 360px) {
  .info-text {
    font-size: 15px;
  }
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .elite-services {
    padding: 50px 0;
  }
  .services-title {
    font-size: clamp(28px, 7vw, 36px);
    margin-bottom: 20px;
  }
  .services-intro {
    font-size: clamp(16px, 3.5vw, 20px);
    margin-bottom: 40px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .elite-services {
    padding: 40px 0;
  }
  .services-title {
    font-size: 26px;
  }
  .services-intro {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .services-layout {
    margin-bottom: 30px;
  }
}

/* -----------------------help------------------------ */

.premium-guidance {
  padding: clamp(70px, 14vh, 120px) 0;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(29, 78, 216, 0.05);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.premium-guidance::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 80%);
  transform: rotate(45deg);
  z-index: 0;
}

.premium-guidance::after {
  content: '';
  position: absolute;
  bottom: -60%;
  right: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 80%);
  transform: rotate(-45deg);
  z-index: 0;
}

.guidance-header {
  text-align: center;
  margin-bottom: 28px;
  font-size: clamp(36px, 6.5vw, 52px);
  font-weight: 800;
  color: #1e293b;
  position: relative;
  z-index: 1;
  letter-spacing: -0.6px;
  opacity: 0;
  transform: translateY(-40px);
  animation: descendReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.guidance-overview {
  text-align: center;
  margin-bottom: 56px;
  font-size: clamp(19px, 3.2vw, 25px);
  font-weight: 400;
  line-height: 1.75;
  color: #475569;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-30px);
  animation: descendReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.guidance-collection {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(28px, 4.5vw, 45px);
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.guidance-collection .guidance-element:nth-child(1),
.guidance-collection .guidance-element:nth-child(2) {
  grid-column: span 3;
}

@media (max-width: 1200px) {
  .guidance-collection .guidance-element:nth-child(1),
  .guidance-collection .guidance-element:nth-child(2) {
    grid-column: span 2;
  }
}

@media (max-width: 1200px) {
  .guidance-collection {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .guidance-collection {
    gap: 24px;
  }
}

.guidance-element {
  grid-column: span 2;
  padding: clamp(28px, 4.5vw, 36px);
  border-radius: 20px;
  background: #ffffff;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 340px;
  box-shadow: 0 12px 32px rgba(29, 78, 216, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: perspective(1000px) rotateY(20deg) translateY(60px);
  animation: elementReveal 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  position: relative;
  overflow: hidden;
}

.guidance-element::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.guidance-element:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.guidance-element:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-12px);
  box-shadow: 0 24px 48px rgba(29, 78, 216, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.guidance-element:nth-child(1) { animation-delay: 0.15s; }
.guidance-element:nth-child(2) { animation-delay: 0.3s; }
.guidance-element:nth-child(3) { animation-delay: 0.45s; }
.guidance-element:nth-child(4) { animation-delay: 0.6s; }
.guidance-element:nth-child(5) { animation-delay: 0.75s; }

@media (max-width: 768px) {
  .guidance-element {
    min-height: 300px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .guidance-element {
    min-height: 280px;
    padding: 24px;
    gap: 16px;
  }
}

.element-symbol {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 14px;
  margin-bottom: 12px;
  transition: background 0.4s ease;
}

.guidance-element:hover .element-symbol {
  background: rgba(59, 130, 246, 0.2);
}

.element-symbol svg {
  width: 32px;
  height: 32px;
}

.element-title {
  font-size: clamp(23px, 3.2vw, 27px);
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.4px;
  position: relative;
}

.element-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #3b82f6;
  transition: width 0.4s ease;
}

.guidance-element:hover .element-title::after {
  width: 70px;
}

@media (min-width: 320px) and (max-width: 360px) {
  .element-title {
    font-size: 21px;
  }
}

.element-summary {
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.7;
  color: #475569;
  flex-grow: 1;
}

@media (min-width: 320px) and (max-width: 360px) {
  .element-summary {
    font-size: 15px;
  }
}

.element-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 200px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 2.1vw, 18px);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.element-call::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 80%);
  transform: rotate(30deg);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.element-call:hover::before {
  opacity: 1;
}

.element-call:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.5);
}

.element-call svg {
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.element-call:hover svg {
  transform: rotate(-90deg) translateX(5px);
}

@media (min-width: 320px) and (max-width: 360px) {
  .element-call {
    padding: 12px 24px;
    font-size: 15px;
    max-width: 180px;
  }
  .element-call svg {
    width: 20px;
    height: 20px;
  }
}

.guidance-invite {
  display: block;
  max-width: 220px;
  margin: 0 auto;
  padding: 16px 32px;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(17px, 2.2vw, 19px);
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
  opacity: 0;
  animation: ascendReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
  z-index: 900;
}

.guidance-invite::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 80%);
  transform: rotate(30deg);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.guidance-invite:hover::before {
  opacity: 1;
}

.guidance-invite:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.5);
}

@keyframes descendReveal {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes elementReveal {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateY(25deg) translateY(70px);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateY(0deg) translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .premium-guidance {
    padding: 60px 0;
  }
  .guidance-header {
    font-size: clamp(32px, 8vw, 44px);
    margin-bottom: 24px;
  }
  .guidance-overview {
    font-size: clamp(17px, 4.5vw, 23px);
    margin-bottom: 48px;
  }
  .guidance-collection {
    margin-bottom: 48px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .premium-guidance {
    padding: 50px 0;
  }
  .guidance-header {
    font-size: 32px;
  }
  .guidance-overview {
    font-size: 17px;
    margin-bottom: 40px;
  }
  .guidance-collection {
    margin-bottom: 40px;
  }
}

/* ----------------------join, form---------------------------- */

.prestige-enrollment {
  padding: clamp(70px, 14vh, 120px) 0;
  background: linear-gradient(145deg, #f3f4f6 0%, #e5e7eb 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(29, 78, 216, 0.05);
  border-top: 1px solid rgba(29, 78, 216, 0.1);
  border-bottom: 1px solid rgba(29, 78, 216, 0.1);
}

.prestige-enrollment::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.08) 0%, transparent 80%);
  transform: rotate(45deg);
  z-index: 0;
}

.prestige-enrollment::after {
  content: '';
  position: absolute;
  bottom: -60%;
  right: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.08) 0%, transparent 80%);
  transform: rotate(-45deg);
  z-index: 0;
}

.enrollment-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(29, 78, 216, 0.05), rgba(15, 23, 42, 0.05));
  z-index: 0;
  opacity: 0;
  animation: backdropGlow 10s infinite ease-in-out;
}

.enrollment-introduction {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: clamp(35px, 5.5vw, 45px);
}

.introduction-heading {
  font-size: clamp(36px, 6.5vw, 52px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(-35px);
  animation: descendIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.introduction-description {
  font-size: clamp(19px, 3.2vw, 25px);
  font-weight: 400;
  line-height: 1.75;
  color: #475569;
  max-width: 950px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(-25px);
  animation: descendIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.enrollment-form {
  background: #ffffff;
  border-radius: 28px;
  padding: clamp(28px, 4.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.5vw, 32px);
  box-shadow: 0 12px 32px rgba(29, 78, 216, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: perspective(1000px) rotateX(12deg) translateY(60px);
  animation: formAscend 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  opacity: 0;
  transform: translateY(35px);
  animation: ascendIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.form-group:nth-child(1) { animation-delay: 0.7s; }
.form-group:nth-child(2) { animation-delay: 0.8s; }
.form-group:nth-child(3) { animation-delay: 0.9s; }
.form-group:nth-child(4) { animation-delay: 1s; }
.form-group:nth-child(5) { animation-delay: 1.1s; }

.group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #0f172a;
  font-size: clamp(15px, 1.9vw, 17px);
  position: relative;
}

.label-content {
  transition: color 0.4s ease;
}

.label-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(29, 78, 216, 0.1);
  border-radius: 8px;
  transition: background 0.4s ease, transform 0.4s ease;
}

.form-group:hover .label-symbol {
  background: rgba(29, 78, 216, 0.2);
  transform: scale(1.15);
}

.group-input,
.group-textarea {
  padding: 16px 18px;
  border: 1px solid rgba(29, 78, 216, 0.2);
  border-radius: 12px;
  font-size: clamp(15px, 1.9vw, 17px);
  background: #f3f4f6;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}

.group-input:focus,
.group-textarea:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 5px rgba(29, 78, 216, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  outline: none;
}

.group-textarea {
  resize: vertical;
  min-height: 160px;
}

.enrollment-notice {
  margin: 10px 0;
  font-size: clamp(13px, 1.7vw, 15px);
  color: #475569;
  text-align: center;
  line-height: 1.6;
}

.enrollment-notice a {
  color: #1d4ed8;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}

.enrollment-notice a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #1d4ed8;
  transition: width 0.4s ease;
}

.enrollment-notice a:hover::after {
  width: 100%;
}

.enrollment-notice a:hover {
  color: #0f172a;
}

.enrollment-submit {
  max-width: 220px;
  margin: 0 auto;
  padding: 16px 0;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(16px, 2.1vw, 18px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.3);
}

.enrollment-submit::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 80%);
  transform: rotate(30deg);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.enrollment-submit:hover::before {
  opacity: 1;
}

.enrollment-submit:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.5);
}

@keyframes descendIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes formAscend {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateX(15deg) translateY(70px);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg) translateY(0);
  }
}

@keyframes backdropGlow {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .prestige-enrollment {
    padding: 60px 0;
  }
  .introduction-heading {
    font-size: clamp(32px, 7vw, 44px);
  }
  .introduction-description {
    font-size: clamp(17px, 4vw, 23px);
  }
  .enrollment-form {
    padding: 24px;
    gap: 24px;
  }
  .form-group {
    gap: 8px;
  }
  .group-label {
    font-size: 15px;
  }
  .group-input,
  .group-textarea {
    padding: 14px 16px;
    font-size: 15px;
  }
  .group-textarea {
    min-height: 140px;
  }
  .enrollment-notice {
    font-size: 13px;
  }
  .enrollment-submit {
    padding: 14px 0;
    font-size: 15px;
    max-width: 200px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .prestige-enrollment {
    padding: 50px 0;
  }
  .introduction-heading {
    font-size: 32px;
  }
  .introduction-description {
    font-size: 17px;
  }
  .enrollment-form {
    padding: 20px;
    gap: 20px;
  }
  .group-label {
    font-size: 14px;
  }
  .group-input,
  .group-textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
  .group-textarea {
    min-height: 100px;
  }
  .enrollment-notice {
    font-size: 12px;
    margin: 6px 0;
  }
  .enrollment-submit {
    padding: 12px 0;
    font-size: 14px;
    max-width: 180px;
  }
}

/* --------------------------footer--------------------------- */

.elite-base {
  padding: clamp(40px, 6vh, 50px) 0;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.4s ease;
}

.elite-base:hover {
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.elite-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 80%);
  opacity: 0.6;
  z-index: 0;
}

.base-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(25px, 3.5vw, 35px);
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(25px);
  animation: ascendIn 1s ease-out forwards;
}

@media (max-width: 768px) {
  .base-details {
    flex-wrap: wrap;
  }
  .base-details .details-entry:nth-child(1) {
    flex: 0 1 100%;
    margin: 0 auto;
  }
}

.details-entry {
  opacity: 0;
  transform: translateY(25px);
  animation: ascendIn 1s ease-out forwards;
}

.details-entry:nth-child(1) { animation-delay: 0.15s; }
.details-entry:nth-child(2) { animation-delay: 0.3s; }
.details-entry:nth-child(3) { animation-delay: 0.45s; }

.details-anchor {
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  transition: color 0.4s ease;
}

.details-anchor:hover {
  color: #3b82f6;
}

.prestige-logo {
  width: 80px;
  display: block;
  transition: transform 0.4s ease;
}

.prestige-logo:hover {
  transform: scale(1.08);
}

.logo-visual {
  width: 100%;
  height: auto;
}

.base-advisory {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  color: #cbd5e1;
  font-size: clamp(14px, 1.7vw, 15px);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(25px);
  animation: ascendIn 1s ease-out 0.5s forwards;
}

.base-advisory p {
  margin: 0;
}

.base-advisory strong {
  color: #ffffff;
  font-weight: 700;
}

.base-advisory a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.4s ease;
}

.base-advisory a:hover {
  color: #60a5fa;
}

.certification-panel {
  padding: clamp(25px, 3.5vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.certification-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(59, 130, 246, 0.4);
}

.panel-text {
  color: #f1f5f9;
  margin-bottom: 2rem;
  font-size: clamp(14px, 1.7vw, 15px);
}

.panel-reference {
  color: #ffffff !important;
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
  font-weight: 700;
  border-radius: 9999px;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  padding: 12px 24px;
  text-decoration: none;
  overflow: hidden;
}

.panel-reference::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transition: left 0.6s ease;
}

.panel-reference:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.panel-reference:hover::before {
  left: 100%;
}

@media (max-width: 993px) {
  .panel-reference {
    display: flex;
    max-width: 250px;
    justify-content: center;
    margin: 0 auto;
  }
}

.base-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(25px, 3.5vw, 35px);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(25px);
  animation: ascendIn 1s ease-out 0.6s forwards;
}

@media (max-width: 1200px) {
  .base-summary {
    flex-wrap: wrap;
  }
}

.summary-rights {
  color: #cbd5e1;
  font-size: clamp(14px, 1.7vw, 15px);
}

@media (max-width: 1200px) {
  .summary-rights {
    order: 2;
    text-align: center;
    margin: 0 auto;
  }
}

.summary-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 2.5vw, 28px);
}

@media (max-width: 1200px) {
  .summary-links {
    flex: 0 1 100%;
  }
}

@media (max-width: 480px) {
  .summary-links {
    flex-direction: column;
  }
}

.links-item {
  opacity: 0;
  transform: translateY(25px);
  animation: ascendIn 1s ease-out forwards;
}

.links-item:nth-child(1) { animation-delay: 0.7s; }
.links-item:nth-child(2) { animation-delay: 0.8s; }
.links-item:nth-child(3) { animation-delay: 0.9s; }
.links-item:nth-child(4) { animation-delay: 1s; }

.links-anchor {
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(14px, 1.7vw, 15px);
  position: relative;
  transition: color 0.4s ease;
}

.links-anchor::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #3b82f6;
  transition: width 0.4s ease;
}

.links-anchor:hover {
  color: #3b82f6;
}

.links-anchor:hover::after {
  width: 100%;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .elite-base {
    padding: 30px 0;
  }
  .base-details {
    gap: 25px;
  }
  .base-advisory {
    font-size: 14px;
    gap: 20px;
  }
  .certification-panel {
    padding: 25px;
  }
  .panel-text {
    font-size: 14px;
  }
  .panel-reference {
    padding: 10px 20px;
    font-size: 14px;
  }
  .base-summary {
    gap: 25px;
  }
  .summary-rights {
    font-size: 14px;
  }
  .summary-links {
    gap: 20px;
  }
  .links-anchor {
    font-size: 14px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .elite-base {
    padding: 25px 0;
  }
  .base-details {
    gap: 20px;
  }
  .base-advisory {
    font-size: 13px;
    gap: 15px;
  }
  .certification-panel {
    padding: 20px;
  }
  .panel-text {
    font-size: 13px;
    margin-bottom: 1.5rem;
  }
  .panel-reference {
    padding: 8px 16px;
    font-size: 13px;
  }
  .base-summary {
    gap: 20px;
  }
  .summary-rights {
    font-size: 13px;
  }
  .summary-links {
    gap: 15px;
  }
  .links-anchor {
    font-size: 13px;
  }
}

/* -------------------------cookie------------------------------- */

.cookie-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(20px, 3vw, 30px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.5s ease-out forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-section:hover {
    transform: translateY(45px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

#cookieSvg {
    width: clamp(40px, 6vw, 50px);
    margin-bottom: 15px;
}

#cookieSvg g path {
    fill: #4da8ff;
    transition: fill 0.3s ease;
}

.cookie-section:hover #cookieSvg g path {
    fill: #2a2a4e;
}

.cookie-title {
    font-size: clamp(1.1em, 2vw, 1.2em);
    font-weight: 700;
    text-align: center;
    color: #2a2a4e;
    margin-bottom: 10px;
}

.cookie-text {
    text-align: center;
    font-size: clamp(0.65em, 1.5vw, 0.7em);
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: clamp(15px, 2vw, 20px);
    flex-direction: row;
}

.cookie-accept {
    width: clamp(70px, 10vw, 80px);
    height: clamp(25px, 4vw, 30px);
    background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
    transition-duration: 0.3s;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(0.8em, 1.5vw, 0.9em);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cookie-accept::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.cookie-accept:hover {
    background: linear-gradient(90deg, #4da8ff 0%, #2a2a4e 100%);
}

.cookie-accept:hover::before {
    left: 100%;
}

.cookie-reject {
    width: clamp(70px, 10vw, 80px);
    height: clamp(25px, 4vw, 30px);
    background-color: #e0e0e0;
    transition-duration: 0.3s;
    color: #2a2a4e;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(0.8em, 1.5vw, 0.9em);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cookie-reject::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
}

.cookie-reject:hover {
    background-color: #c0c0c0;
}

.cookie-reject:hover::before {
    left: 100%;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-section {
        max-width: 90%;
        bottom: 10px;
        right: 5%;
        padding: 15px;
    }
    .cookie-title {
        font-size: 1em;
    }
    .cookie-text {
        font-size: 0.65em;
    }
    .cookie-buttons {
        gap: 15px;
    }
    .cookie-accept, .cookie-reject {
        width: 70px;
        height: 25px;
        font-size: 0.8em;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .cookie-section {
        max-width: 95%;
        padding: 10px;
        bottom: 5px;
        right: 2.5%;
    }
    #cookieSvg {
        width: 35px;
    }
    .cookie-title {
        font-size: 0.9em;
    }
    .cookie-text {
        font-size: 0.6em;
    }
    .cookie-buttons {
        gap: 10px;
    }
    .cookie-accept, .cookie-reject {
        width: 60px;
        height: 22px;
        font-size: 0.7em;
        border-radius: 15px;
    }
}

/* -------------------------pages--------------------------- */

.main-content {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: clamp(50px, 10vh, 80px) 0;
}

.policy-section {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 8vh, 60px) 0;
}

.policy-heading {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 32px;
    text-align: center;
    color: #2a2a4e;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease-out forwards;
}

.policy-content {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.policy-content p {
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.policy-content p:hover {
    color: #2a2a4e;
}

.policy-content h2 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 16px;
    color: #2a2a4e;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.policy-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4da8ff;
    transition: width 0.3s ease;
}

.policy-content h2:hover::after {
    width: 100px;
}

.policy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.policy-content li:hover {
    transform: translateX(5px);
}

.policy-content a {
    color: #4da8ff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.policy-content a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #4da8ff;
    transition: width 0.3s ease;
}

.policy-content a:hover {
    color: #2a2a4e;
}

.policy-content a:hover::after {
    width: 100%;
}

.policy-action-btn {
    max-width: 180px;
    width: 100%;
    margin: 32px auto 0;
    padding: 12px 0;
    background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
    color: #ffffff;
    text-align: center;
    display: block;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.policy-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(77, 168, 255, 0.4);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-heading {
        font-size: clamp(24px, 6vw, 32px);
    }
    .policy-content {
        font-size: 14px;
    }
    .policy-content h2 {
        font-size: 20px;
    }
    .policy-action-btn {
        padding: 10px 0;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .policy-section {
        padding: 30px 0;
    }
    .policy-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .policy-content {
        font-size: 13px;
    }
    .policy-content h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .policy-content ul {
        margin-left: 15px;
    }
    .policy-content li {
        margin-bottom: 8px;
    }
    .policy-action-btn {
        max-width: 160px;
        margin-top: 20px;
        padding: 8px 0;
    }
}