@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://domain.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://domain.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 */
.prestige-alert-panel {
  background: linear-gradient(45deg, #0f172a 0%, #1e293b 100%);
  border-top: 3px solid #d4af37;
  border-bottom: 3px solid #d4af37;
  padding: 25px 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1);
  transition: background 0.5s ease-in-out;
}

.prestige-alert-panel::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  transform: translateX(-50%);
  animation: subtleGlow 5s ease-in-out infinite alternate;
  z-index: 0;
}

.elite-disclosure-wrapper {
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  opacity: 0;
  animation: elegantScaleIn 1s ease-out 0.2s forwards;
}

.supreme-caution-message {
  color: #f0f0f0;
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
  letter-spacing: 0.5px;
}

.supreme-caution-message .highlight-emphasis {
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
  transition: text-shadow 0.4s ease;
}

.supreme-caution-message .disclosure-link {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.supreme-caution-message .disclosure-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.supreme-caution-message .disclosure-link:hover::before {
  transform: scaleX(1);
}

.supreme-caution-message .disclosure-link:hover {
  color: #e0c070;
}

.prestige-alert-panel:hover {
  background: linear-gradient(45deg, #0f172a 0%, #1e293b 80%, #2a3a50 100%);
}

.prestige-alert-panel:hover .highlight-emphasis {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes elegantScaleIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes subtleGlow {
  to {
    bottom: -40%;
    opacity: 0.8;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .elite-disclosure-wrapper {
    padding: 12px 15px;
    max-width: 95%;
  }

  .supreme-caution-message {
    font-size: clamp(12px, 1.7vw, 14px);
    text-align: left;
  }
}

/* header */

.elite-navigation-bar {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.4s ease, background 0.4s ease;
}

.elite-navigation-bar:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
}

.prestige-header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 30px);
  opacity: 0;
  transform: translateY(-15px);
  animation: subtleEntrance 1s ease-out forwards;
}

.luxury-brand-emblem {
  max-width: 60px;
  width: 100%;
  display: block;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.luxury-brand-emblem:hover {
  filter: brightness(1.1);
  transform: rotate(5deg) scale(1.08);
}

.luxury-brand-emblem__graphic {
  width: 100%;
  height: auto;
}

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

.initiate-venture-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(59, 130, 246, 0.2);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.initiate-venture-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.initiate-venture-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.initiate-venture-btn:hover::after {
  opacity: 1;
}

.executive-menu-panel {
  display: none;
}

@media screen and (min-width: 1200px) {
  .executive-menu-panel {
    display: block;
  }
}

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

.executive-menu-element {
  position: relative;
}

.executive-menu-anchor {
  color: #1f2937;
  text-decoration: none;
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

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

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

.executive-menu-anchor:hover::after {
  width: 100%;
  left: 0;
}

.toggle-nav-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.toggle-nav-icon .icon-bar {
  width: 100%;
  height: 3px;
  background-color: #1e3a8a;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.toggle-nav-icon.active .icon-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.toggle-nav-icon.active .icon-bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.toggle-nav-icon.active .icon-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-executive-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  transform: scale(0.9);
}

.mobile-executive-overlay.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  animation: overlayReveal 0.6s ease-out;
}

.mobile-executive-wrapper {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.mobile-executive-collection {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-executive-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-executive-overlay.visible .mobile-executive-element {
  opacity: 1;
  transform: translateY(0);
}

.mobile-executive-overlay.visible .mobile-executive-element:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-executive-overlay.visible .mobile-executive-element:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-executive-overlay.visible .mobile-executive-element:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-executive-overlay.visible .mobile-executive-element:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-executive-anchor {
  color: #1f2937;
  text-decoration: none;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 600;
  display: block;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.mobile-executive-anchor:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: scale(1.05);
}

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

@keyframes overlayReveal {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .prestige-header-layout {
    gap: 10px;
  }
  .initiate-venture-btn {
    padding: 10px 18px;
    font-size: clamp(13px, 1.7vw, 15px);
  }
  .luxury-brand-emblem {
    max-width: 50px;
  }
  .mobile-executive-wrapper {
    padding: 15px;
  }
  .mobile-executive-anchor {
    font-size: clamp(18px, 3.5vw, 22px);
  }
}

@media (min-width: 1200px) {
  .toggle-nav-icon,
  .mobile-executive-overlay {
    display: none;
  }
}

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

.sovereign-entry-atrium {
  padding: clamp(100px, 18vh, 180px) 0;
  position: relative;
  color: #f5f5f5;
  background-image: url(../img/hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
}

.sovereign-entry-atrium::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10, 25, 47, 0.7) 0%, rgba(10, 25, 47, 0.4) 50%, transparent 100%);
  mix-blend-mode: multiply;
  opacity: 0.85;
  transition: opacity 0.6s ease-in-out;
  z-index: -1;
}

.sovereign-entry-atrium:hover::after {
  opacity: 0.95;
}

.aristocratic-welcome-sanctum {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: clamp(30px, 5vw, 50px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: perspective(1000px) rotateX(-5deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  animation: majesticUnveil 1.2s ease-out 0.3s forwards;
}

.sovereign-entry-atrium:hover .aristocratic-welcome-sanctum {
  transform: perspective(1000px) rotateX(0deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.imperial-decree-manifesto {
  font-size: clamp(40px, 7vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.9);
  animation: imperialExpand 0.8s ease-out 0.5s forwards;
}

.refined-prose-elucidation {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: scale(0.9);
  animation: imperialExpand 0.8s ease-out 0.7s forwards;
}

.regal-embarkation-gateway {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #1e40af 0%, #60a5fa 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 17px);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: scale(0.9);
  animation: imperialExpand 0.8s ease-out 0.9s forwards;
}

.regal-embarkation-gateway::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.regal-embarkation-gateway:hover {
  box-shadow: 0 6px 18px rgba(96, 165, 250, 0.5);
  transform: translateY(-4px);
}

.regal-embarkation-gateway:hover::before {
  width: 300%;
  height: 300%;
}

.regal-embarkation-gateway > * {
  position: relative;
  z-index: 1;
}

@keyframes majesticUnveil {
  to {
    opacity: 1;
  }
}

@keyframes imperialExpand {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .aristocratic-welcome-sanctum {
    padding: clamp(20px, 6vw, 40px);
    border-radius: 12px;
  }
  .imperial-decree-manifesto {
    font-size: clamp(32px, 9vw, 48px);
    letter-spacing: 0.5px;
  }
  .refined-prose-elucidation {
    font-size: clamp(16px, 3.2vw, 20px);
    max-width: 100%;
  }
  .regal-embarkation-gateway {
    padding: 12px 28px;
    font-size: clamp(13px, 2.2vw, 15px);
  }
}

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

.opulent-appraisal-gallery {
  background: linear-gradient(to top, #f0f4f8 0%, #ffffff 100%);
  padding: clamp(30px, 6vw, 50px) 0;
  max-width: 1000px;
  border-radius: 40px;
  margin: -40px auto 0;
  position: relative;
  z-index: 4;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.05), 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s ease-in-out;
  overflow: hidden;
}

.opulent-appraisal-gallery::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  animation: luminousPulse 8s ease-in-out infinite;
  z-index: -1;
}

.opulent-appraisal-gallery:hover {
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.07), 0 10px 30px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 768px) {
  .opulent-appraisal-gallery {
    margin-top: 0;
    border-radius: 30px;
  }
}

.sumptuous-assessment-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(15px, 4vw, 25px);
  justify-items: center;
}

@media screen and (max-width: 768px) {
  .sumptuous-assessment-mosaic {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 360px) {
  .sumptuous-assessment-mosaic {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.exquisite-valuation-chamber {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(15px, 4vw, 25px);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 140px;
  width: 100%;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: perspective(800px) rotateY(15deg);
  animation: regalRotation 1s ease-out forwards;
}

.exquisite-valuation-chamber:nth-child(1) {
  animation-delay: 0.15s;
}

.exquisite-valuation-chamber:nth-child(2) {
  animation-delay: 0.3s;
}

.exquisite-valuation-chamber:nth-child(3) {
  animation-delay: 0.45s;
}

.exquisite-valuation-chamber:nth-child(4) {
  animation-delay: 0.6s;
}

.exquisite-valuation-chamber:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: perspective(800px) rotateY(0deg) translateY(-8px);
}

@media screen and (max-width: 1200px) {
  .exquisite-valuation-chamber {
    min-height: 130px;
    max-width: 180px;
  }
}

@media screen and (max-width: 360px) {
  .exquisite-valuation-chamber {
    min-height: 120px;
    max-width: 100%;
  }
}

.majestic-emblem-crown {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.sovereign-insignia-crest {
  height: clamp(24px, 3.5vw, 28px);
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.majestic-emblem-crown:hover .sovereign-insignia-crest {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  transform: rotate(10deg);
}

.noble-decree-scroll {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  color: #1e293b;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 1200px) {
  .noble-decree-scroll {
    font-size: 14px;
  }
}

@media screen and (max-width: 360px) {
  .noble-decree-scroll {
    font-size: 13px;
  }
}

.resplendent-merit-core {
  display: flex;
  align-items: center;
  gap: 6px;
}

.imperious-score-monument {
  font-weight: 800;
  font-size: clamp(20px, 3.5vw, 26px);
  color: #1e293b;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1200px) {
  .imperious-score-monument {
    font-size: 20px;
  }
}

@media screen and (max-width: 360px) {
  .imperious-score-monument {
    font-size: 18px;
  }
}

.celestial-luminance-constellation {
  display: flex;
  gap: 5px;
}

.ethereal-glow-orb {
  width: clamp(16px, 2.5vw, 20px);
  height: clamp(16px, 2.5vw, 20px);
  color: #fbbf24;
  transition: transform 0.4s ease, filter 0.4s ease;
  animation: subtleTwinkle 2s ease-in-out infinite;
}

.ethereal-glow-orb:hover {
  transform: scale(1.15);
  filter: brightness(1.2) drop-shadow(0 0 5px #fbbf24);
}

.ethereal-glow-orb.partial-radiance {
  color: #d1d5db;
  fill: none;
}

.exquisite-valuation-chamber:nth-child(1) .ethereal-glow-orb {
  color: #3b82f6;
}

.exquisite-valuation-chamber:nth-child(4) .ethereal-glow-orb {
  color: #10b981;
}

@media screen and (max-width: 360px) {
  .ethereal-glow-orb {
    width: 16px;
    height: 16px;
  }
}

@keyframes regalRotation {
  to {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg);
  }
}

@keyframes luminousPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes subtleTwinkle {
  0%, 100% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
}

/* Specific adjustments for 320-360px */
@media screen and (min-width: 320px) and (max-width: 360px) {
  .opulent-appraisal-gallery {
    padding: 20px 0;
  }
  .sumptuous-assessment-mosaic {
    gap: 10px;
  }
  .exquisite-valuation-chamber {
    padding: 12px;
    min-height: 110px;
  }
  .majestic-emblem-crown {
    gap: 8px;
    margin-bottom: 10px;
  }
  .sovereign-insignia-crest {
    height: 22px;
  }
  .resplendent-merit-core {
    gap: 4px;
  }
}

/* ------------------------about------------------------------ */

.illustrious-preference-sanctuary {
  padding: clamp(60px, 12vh, 100px) 0;
  background: linear-gradient(to bottom, #f9fafb 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(203, 213, 225, 0.5);
}

.illustrious-preference-sanctuary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(226, 232, 240, 0.3) 0%, transparent 100%);
  z-index: 0;
  animation: gentleWave 6s linear infinite;
}

.opulent-invitation-enclave {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.majestic-inquiry-proclamation {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(32px, 5.5vw, 44px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.95);
  animation: proclamationRise 1s ease-out forwards;
}

.sumptuous-merit-exposition {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(25px, 4vw, 35px);
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .sumptuous-merit-exposition {
    gap: 25px;
  }
}

@media screen and (max-width: 768px) {
  .sumptuous-merit-exposition {
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .sumptuous-merit-exposition {
    gap: 15px;
  }
}

.refined-virtue-vitrine {
  flex: 1 1 calc(33.333% - clamp(25px, 4vw, 35px));
  min-width: 280px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(20px, 3vw, 25px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: translateX(30px) rotate(-2deg);
  animation: vitrineUnfold 1.2s ease-out forwards;
}

.refined-virtue-vitrine:nth-child(odd) {
  transform: translateX(-30px) rotate(2deg);
}

.refined-virtue-vitrine:nth-child(1) { animation-delay: 0.2s; }
.refined-virtue-vitrine:nth-child(2) { animation-delay: 0.3s; }
.refined-virtue-vitrine:nth-child(3) { animation-delay: 0.4s; }
.refined-virtue-vitrine:nth-child(4) { animation-delay: 0.5s; }
.refined-virtue-vitrine:nth-child(5) { animation-delay: 0.6s; }
.refined-virtue-vitrine:nth-child(6) { animation-delay: 0.7s; }

.refined-virtue-vitrine:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px) rotate(0deg);
}

@media screen and (max-width: 768px) {
  .refined-virtue-vitrine {
    min-height: 400px;
    max-width: none;
  }
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .refined-virtue-vitrine {
    min-height: 360px;
    padding: 15px;
  }
}

.exquisite-portrait-gallery {
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
}

.exquisite-portrait-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.refined-virtue-vitrine:hover .exquisite-portrait-gallery::before {
  opacity: 1;
}

.noble-visage-canvas {
  display: block;
  width: 100%;
  height: clamp(220px, 32vw, 260px);
  object-fit: cover;
  border-radius: 18px;
  transition: filter 0.5s ease;
}

.refined-virtue-vitrine:hover .noble-visage-canvas {
  filter: brightness(1.05) contrast(1.05);
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .noble-visage-canvas {
    height: 200px;
  }
}

.aristocratic-merit-chronicle {
  text-align: center;
}

.imperial-distinction-epitaph {
  margin-bottom: 15px;
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.8px;
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .imperial-distinction-epitaph {
    font-size: 20px;
  }
}

.elegant-narrative-tapestry {
  font-family: "Georgia", serif;
  font-size: clamp(15px, 2.2vw, 17px);
  color: #334155;
  line-height: 1.7;
  font-style: italic;
}

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

.regal-commencement-portal {
  display: block;
  max-width: 180px;
  margin: 50px auto 0;
  padding: 14px 28px;
  background: linear-gradient(145deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
  opacity: 0;
  animation: portalManifest 1s ease-out 0.8s forwards;
}

.regal-commencement-portal::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  transition: top 0.6s ease;
}

.regal-commencement-portal:hover {
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
  transform: scale(1.05);
}

.regal-commencement-portal:hover::after {
  top: 100%;
}

@keyframes proclamationRise {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes vitrineUnfold {
  to {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes portalManifest {
  to {
    opacity: 1;
  }
}

@keyframes gentleWave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .illustrious-preference-sanctuary {
    padding: 50px 0;
  }
  .majestic-inquiry-proclamation {
    font-size: clamp(28px, 7vw, 36px);
    margin-bottom: 40px;
  }
  .regal-commencement-portal {
    padding: 12px 24px;
    font-size: clamp(13px, 2.2vw, 15px);
    margin-top: 40px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .illustrious-preference-sanctuary {
    padding: 40px 0;
  }
  .majestic-inquiry-proclamation {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .sumptuous-merit-exposition {
    margin-bottom: 30px;
  }
  .regal-commencement-portal {
    max-width: 160px;
    padding: 10px 20px;
    font-size: 13px;
    margin-top: 30px;
  }
}


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

.prestigious-instrumentarium-vault {
  padding: clamp(70px, 14vh, 120px) 0;
  background: linear-gradient(to right, #111827 0%, #1f2937 100%);
  color: #d1d5db;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #d4af37;
}

.prestigious-instrumentarium-vault::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  animation: goldenSweep 10s linear infinite;
  z-index: 0;
}

.sovereign-proficiency-arsenal {
  position: relative;
  z-index: 1;
}

.imperial-directive-manifest {
  text-align: center;
  margin-bottom: 25px;
  font-size: clamp(32px, 5.5vw, 44px);
  font-weight: 800;
  color: #f3f4f6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(25px);
  animation: manifestAscend 1.2s ease-out forwards;
}

.refined-exposition-elucidation {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 300;
  line-height: 1.7;
  color: #9ca3af;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(25px);
  animation: manifestAscend 1.2s ease-out 0.3s forwards;
}

.opulent-capability-panorama {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(25px, 4vw, 35px);
  margin-bottom: 50px;
}

@media screen and (max-width: 1200px) {
  .opulent-capability-panorama {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .opulent-capability-panorama {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .opulent-capability-panorama {
    gap: 20px;
  }
}

.exquisite-facility-monolith {
  padding: clamp(30px, 5vw, 40px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 320px;
  transition: box-shadow 0.5s ease, border-color 0.5s ease;
  opacity: 0;
  transform: scale(0.95);
  animation: monolithEmerge 1s ease-out forwards;
}

.exquisite-facility-monolith:nth-child(1) { animation-delay: 0.2s; }
.exquisite-facility-monolith:nth-child(2) { animation-delay: 0.3s; }
.exquisite-facility-monolith:nth-child(3) { animation-delay: 0.4s; }
.exquisite-facility-monolith:nth-child(4) { animation-delay: 0.5s; }

.exquisite-facility-monolith:hover {
  box-shadow: inset 0 0 25px rgba(212, 175, 55, 0.2), 0 10px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(212, 175, 55, 0.3);
}

@media screen and (max-width: 768px) {
  .exquisite-facility-monolith {
    min-height: 300px;
  }
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .exquisite-facility-monolith {
    min-height: 280px;
    padding: 25px;
  }
}

.celestial-emblem-orb {
  margin-bottom: 25px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  padding: 10px;
  transition: background 0.5s ease;
}

.exquisite-facility-monolith:hover .celestial-emblem-orb {
  background: rgba(212, 175, 55, 0.2);
}

.celestial-emblem-orb svg {
  color: #d4af37;
  width: 40px;
  height: 40px;
  animation: emblemRotate 5s linear infinite;
}

.majestic-faculty-epigraph {
  margin-bottom: 18px;
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 700;
  color: #f3f4f6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .majestic-faculty-epigraph {
    font-size: 20px;
  }
}

.elegant-discourse-parable {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  color: #9ca3af;
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .elegant-discourse-parable {
    font-size: 14px;
  }
}

.resplendent-expedition-chamber {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(25px, 4vw, 35px);
  opacity: 0;
  transform: translateY(30px);
  animation: chamberReveal 1.2s ease-out 0.6s forwards;
}

@media screen and (max-width: 768px) {
  .resplendent-expedition-chamber {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .resplendent-expedition-chamber {
    gap: 20px;
  }
}

.illustrious-visage-sanctum {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.regal-portrait-effigy {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.6s ease;
}

.resplendent-expedition-chamber:hover .regal-portrait-effigy {
  filter: sepia(0.2) brightness(1.1);
}

.aristocratic-insight-repository {
  padding: 20px;
}

.sovereign-edict-declaration {
  margin-bottom: 25px;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 800;
  color: #f3f4f6;
  max-width: 480px;
}

.sovereign-edict-declaration em {
  color: #d4af37;
  font-style: normal;
  text-decoration: underline wavy #d4af37;
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .sovereign-edict-declaration {
    font-size: 28px;
  }
}

.polished-prose-testament {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.8;
  color: #9ca3af;
  max-width: 480px;
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .polished-prose-testament {
    font-size: 15px;
  }
}

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

@keyframes monolithEmerge {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes goldenSweep {
  to {
    left: 100%;
  }
}

@keyframes emblemRotate {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .prestigious-instrumentarium-vault {
    padding: 50px 0;
  }
  .imperial-directive-manifest {
    font-size: clamp(28px, 7vw, 36px);
    margin-bottom: 20px;
  }
  .refined-exposition-elucidation {
    font-size: clamp(16px, 3.2vw, 20px);
    margin-bottom: 40px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .prestigious-instrumentarium-vault {
    padding: 40px 0;
  }
  .imperial-directive-manifest {
    font-size: 26px;
  }
  .refined-exposition-elucidation {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .opulent-capability-panorama {
    margin-bottom: 30px;
  }
}

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

.exalted-guidance-haven {
  padding: clamp(60px, 12vh, 100px) 0;
  background: linear-gradient(to top, #f0f4f8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #1e40af;
}

.exalted-guidance-haven::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  width: 200%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  transform: translateX(-50%);
  animation: etherealBloom 7s ease-in-out infinite alternate;
  z-index: 0;
}

.sovereign-mentorship-citadel {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.regal-orientation-decree {
  text-align: center;
  margin-bottom: 25px;
  font-size: clamp(30px, 5.2vw, 42px);
  font-weight: 800;
  color: #1e40af;
  letter-spacing: 0.8px;
  opacity: 0;
  transform: perspective(600px) rotateX(20deg);
  animation: decreeUnveil 1.5s ease-out forwards;
}

.polished-induction-narrative {
  text-align: center;
  margin-bottom: 45px;
  font-size: clamp(17px, 2.6vw, 21px);
  font-weight: 300;
  line-height: 1.8;
  color: #334155;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: perspective(600px) rotateX(20deg);
  animation: decreeUnveil 1.5s ease-out 0.2s forwards;
}

.illustrious-assistance-tapestry {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 3.5vw, 32px);
  margin-bottom: 45px;
  justify-content: center;
}

.refined-apprentice-pinnacle {
  flex: 1 1 calc(20% - clamp(22px, 3.5vw, 32px));
  min-width: 220px;
  padding: clamp(22px, 3.5vw, 28px);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 5px 18px rgba(30, 64, 175, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 300px;
  transition: box-shadow 0.6s ease, transform 0.6s ease;
  opacity: 0;
  animation: pinnacleAscent 1.2s ease-out forwards;
}

.refined-apprentice-pinnacle:nth-child(1) { animation-delay: 0.1s; }
.refined-apprentice-pinnacle:nth-child(2) { animation-delay: 0.2s; }
.refined-apprentice-pinnacle:nth-child(3) { animation-delay: 0.3s; }
.refined-apprentice-pinnacle:nth-child(4) { animation-delay: 0.4s; }
.refined-apprentice-pinnacle:nth-child(5) { animation-delay: 0.5s; }

.refined-apprentice-pinnacle:hover {
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.2);
  transform: translateY(-10px);
}

@media screen and (max-width: 1200px) {
  .refined-apprentice-pinnacle {
    flex: 1 1 calc(33.333% - clamp(22px, 3.5vw, 32px));
  }
}

@media screen and (max-width: 768px) {
  .refined-apprentice-pinnacle {
    flex: 1 1 100%;
    min-height: 280px;
  }
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .refined-apprentice-pinnacle {
    min-height: 260px;
    padding: 18px;
  }
}

.imperious-tutorial-epitome {
  font-size: clamp(21px, 2.6vw, 25px);
  font-weight: 700;
  color: #1e40af;
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .imperious-tutorial-epitome {
    font-size: 19px;
  }
}

.elegant-apprenticeship-paragon {
  font-size: clamp(15px, 2.1vw, 17px);
  line-height: 1.7;
  color: #475569;
  flex-grow: 1;
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .elegant-apprenticeship-paragon {
    font-size: 14px;
  }
}

.majestic-initiation-conduit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 180px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #1e40af 0%, #60a5fa 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(96, 165, 250, 0.2);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.majestic-initiation-conduit svg {
  width: 22px;
  height: 22px;
  transform: rotate(-90deg);
  transition: transform 0.4s ease;
}

.majestic-initiation-conduit:hover {
  box-shadow: 0 6px 20px rgba(96, 165, 250, 0.4);
  transform: translateY(-4px);
}

.majestic-initiation-conduit:hover svg {
  transform: rotate(-90deg) translateX(6px);
}

.exalted-guidance-haven > .container > .sovereign-mentorship-citadel > .majestic-initiation-conduit {
  margin: 0 auto;
  opacity: 0;
  animation: conduitMaterialize 1.2s ease-out 0.6s forwards;
}

@media screen and (min-width: 320px) and (max-width: 360px) {
  .majestic-initiation-conduit {
    padding: 11px 22px;
    font-size: 14px;
    max-width: 160px;
  }
  .majestic-initiation-conduit svg {
    width: 20px;
    height: 20px;
  }
}

@keyframes decreeUnveil {
  to {
    opacity: 1;
    transform: perspective(600px) rotateX(0deg);
  }
}

@keyframes pinnacleAscent {
  to {
    opacity: 1;
  }
}

@keyframes conduitMaterialize {
  to {
    opacity: 1;
  }
}

@keyframes etherealBloom {
  to {
    transform: translateX(-50%) scale(1.1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .exalted-guidance-haven {
    padding: 50px 0;
  }
  .regal-orientation-decree {
    font-size: clamp(26px, 6.5vw, 34px);
    margin-bottom: 20px;
  }
  .polished-induction-narrative {
    font-size: clamp(15px, 3vw, 19px);
    margin-bottom: 35px;
  }
  .illustrious-assistance-tapestry {
    margin-bottom: 35px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .exalted-guidance-haven {
    padding: 40px 0;
  }
  .regal-orientation-decree {
    font-size: 24px;
  }
  .polished-induction-narrative {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .illustrious-assistance-tapestry {
    margin-bottom: 25px;
  }
}


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

.sovereign-enrollment-atrium {
  padding: clamp(30px, 6vh, 50px) 0;
  background: linear-gradient(to bottom, #f9fafb 0%, #e2e8f0 100%);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(30, 58, 138, 0.1);
  transition: box-shadow 0.4s ease-in-out;
}

.sovereign-enrollment-atrium:hover {
  box-shadow: inset 0 0 50px rgba(30, 58, 138, 0.15);
}

.aristocratic-induction-sanctum {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.imperial-convocation-edict {
  text-align: center;
  font-size: clamp(30px, 5.2vw, 38px);
  margin-bottom: 18px;
  color: #1e3a8a;
  font-weight: 800;
  letter-spacing: 1px;
  opacity: 0;
  transform: scale(0.9);
  animation: edictManifest 1s ease-out forwards;
}

.refined-summons-exhortation {
  font-size: clamp(17px, 2.6vw, 21px);
  text-align: center;
  margin-bottom: 35px;
  color: #334155;
  opacity: 0;
  transform: scale(0.9);
  animation: edictManifest 1s ease-out 0.3s forwards;
}

.regal-admission-protocol {
  background-color: #ffffff;
  border-radius: 28px;
  padding: clamp(25px, 4vw, 35px);
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 4vw, 35px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.08);
  opacity: 0;
  animation: protocolEmerge 1.2s ease-out 0.5s forwards;
}

.elite-inquiry-domain {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(25px);
  animation: domainCascade 0.8s ease-out forwards;
}

.elite-inquiry-domain:nth-child(1) { animation-delay: 0.6s; }
.elite-inquiry-domain:nth-child(2) { animation-delay: 0.7s; }
.elite-inquiry-domain:nth-child(3) { animation-delay: 0.8s; }
.elite-inquiry-domain:nth-child(4) { animation-delay: 0.9s; }
.elite-inquiry-domain:nth-child(5) { animation-delay: 1s; }

.noble-query-insignia {
  font-weight: 600;
  color: #1e3a8a;
  font-size: clamp(15px, 2vw, 17px);
  letter-spacing: 0.5px;
}

.prestigious-response-vessel {
  padding: 14px 18px;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  font-size: clamp(15px, 2vw, 17px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  background: #ffffff;
}

.prestigious-response-vessel:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
  background: #f0f9ff;
  outline: none;
}

.majestic-correspondence-scroll {
  resize: vertical;
  min-height: 140px;
}

.sovereign-covenant-declaration {
  margin-top: -10px;
  margin-bottom: 8px;
  font-size: clamp(13px, 1.8vw, 15px);
  color: #475569;
  text-align: center;
}

.sovereign-covenant-declaration a {
  color: #3b82f6;
  text-decoration: underline;
  transition: color 0.4s ease;
}

.sovereign-covenant-declaration a:hover {
  color: #1e40af;
}

.imperial-decree-fulcrum {
  max-width: 200px;
  min-width: 200px;
  margin: 0 auto;
  padding: 14px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.imperial-decree-fulcrum::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.imperial-decree-fulcrum:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.imperial-decree-fulcrum:hover::after {
  opacity: 1;
}

@keyframes edictManifest {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes protocolEmerge {
  to {
    opacity: 1;
  }
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .sovereign-enrollment-atrium {
    padding: 25px 0;
  }
  .imperial-convocation-edict {
    font-size: clamp(26px, 6.5vw, 34px);
  }
  .refined-summons-exhortation {
    font-size: clamp(15px, 3vw, 19px);
  }
  .regal-admission-protocol {
    padding: 20px;
  }
  .noble-query-insignia {
    font-size: 15px;
  }
  .prestigious-response-vessel {
    font-size: 15px;
  }
  .sovereign-covenant-declaration {
    font-size: 13px;
  }
  .imperial-decree-fulcrum {
    font-size: 15px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .sovereign-enrollment-atrium {
    border-radius: 25px;
  }
  .imperial-convocation-edict {
    font-size: 26px;
  }
  .refined-summons-exhortation {
    font-size: 15px;
  }
  .regal-admission-protocol {
    padding: 18px;
    gap: 22px;
  }
  .elite-inquiry-domain {
    gap: 8px;
  }
  .prestigious-response-vessel {
    padding: 12px 16px;
    font-size: 14px;
  }
  .majestic-correspondence-scroll {
    min-height: 120px;
  }
  .sovereign-covenant-declaration {
    font-size: 12px;
    margin-top: -6px;
    margin-bottom: 6px;
  }
  .imperial-decree-fulcrum {
    padding: 12px 0;
    font-size: 14px;
    max-width: 180px;
  }
}


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

.opulent-termination-vault {
  padding: clamp(40px, 8vh, 60px) 0;
  background: linear-gradient(to top, #f9fafb 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  border-top: 4px solid #1e40af;
}

.opulent-termination-vault::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  width: 150%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
  transform: translateX(-50%);
  animation: vaultRadiance 8s ease-in-out infinite alternate;
  z-index: 0;
}

.prestigious-closure-enclave {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(30px, 5vw, 40px);
  align-items: start;
}

@media screen and (max-width: 768px) {
  .prestigious-closure-enclave {
    grid-template-columns: 1fr;
  }
}

.sumptuous-emblem-citadel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateX(-30px);
  animation: emblemReveal 1.2s ease-out forwards;
}

.regal-insignia-portal {
  width: 80px;
  display: block;
  transition: filter 0.4s ease;
}

.regal-insignia-portal:hover {
  filter: drop-shadow(0 4px 8px rgba(30, 64, 175, 0.2));
}

.imperial-crest-effigy {
  width: 100%;
  height: auto;
}

.aristocratic-communique-arsenal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sovereign-dispatch-conduit {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  transition: color 0.4s ease;
}

.sovereign-dispatch-conduit:hover {
  color: #3b82f6;
}

.resplendent-admonition-repository {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(30, 64, 175, 0.1);
  opacity: 0;
  transform: translateX(30px);
  animation: repositoryUnfold 1.2s ease-out 0.2s forwards;
}

.majestic-caution-scroll {
  margin: 0;
  font-size: clamp(14px, 1.9vw, 16px);
  color: #334155;
  line-height: 1.7;
}

.majestic-caution-scroll strong {
  color: #1e40af;
  font-weight: 700;
}

.majestic-caution-scroll a {
  color: #3b82f6;
  text-decoration: none;
  transition: text-decoration 0.4s ease;
}

.majestic-caution-scroll a:hover {
  text-decoration: underline wavy;
}

.illustrious-epilogue-chamber {
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #bfdbfe;
  opacity: 0;
  animation: epilogueFade 1.2s ease-out 0.4s forwards;
}

@media screen and (max-width: 768px) {
  .illustrious-epilogue-chamber {
    flex-direction: column;
    gap: 15px;
  }
}

.noble-heritage-inscription {
  color: #475569;
  font-size: clamp(14px, 1.9vw, 16px);
}

.exquisite-navigation-labyrinth {
  display: flex;
  gap: clamp(20px, 3vw, 25px);
}

@media screen and (max-width: 480px) {
  .exquisite-navigation-labyrinth {
    flex-direction: column;
    align-items: center;
  }
}

.refined-passage-gateway {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.9vw, 16px);
  position: relative;
  transition: color 0.4s ease;
}

.refined-passage-gateway::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #3b82f6, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.refined-passage-gateway:hover {
  color: #3b82f6;
}

.refined-passage-gateway:hover::after {
  transform: scaleX(1);
}

@keyframes emblemReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes repositoryUnfold {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes epilogueFade {
  to {
    opacity: 1;
  }
}

@keyframes vaultRadiance {
  to {
    transform: translateX(-50%) scale(1.05);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .opulent-termination-vault {
    padding: 30px 0;
  }
  .resplendent-admonition-repository {
    padding: 15px;
  }
  .majestic-caution-scroll {
    font-size: 14px;
  }
  .noble-heritage-inscription {
    font-size: 14px;
  }
  .refined-passage-gateway {
    font-size: 14px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .opulent-termination-vault {
    padding: 25px 0;
  }
  .sumptuous-emblem-citadel {
    gap: 15px;
  }
  .resplendent-admonition-repository {
    gap: 15px;
    padding: 12px;
  }
  .majestic-caution-scroll {
    font-size: 13px;
  }
  .illustrious-epilogue-chamber {
    margin-top: 20px;
    padding-top: 15px;
  }
  .noble-heritage-inscription {
    font-size: 13px;
  }
  .exquisite-navigation-labyrinth {
    gap: 15px;
  }
  .refined-passage-gateway {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px){
    .prestigious-closure-enclave {
        display: flex !important;
        flex-direction: column;
    }
}

/* -------------------------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;
    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;
    }
}