@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://evanqirosen.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://evanqirosen.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;
}

/* header */

.corporate-lead-bar {
  background: linear-gradient(135deg, #1a202c, #2d3748);
  padding: clamp(12px, 2.5vw, 18px) 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 150;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.7s ease-out;
}

.corporate-lead-bar:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.superior-nav-framework {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(25px, 4.5vw, 45px);
  animation: gracefulUnveil 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premier-logo-gateway {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.premier-logo-gateway:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.emblem-visual {
  height: clamp(40px, 5.5vw, 50px);
  width: auto;
  transition: filter 0.6s ease;
}

.premier-logo-gateway:hover .emblem-visual {
  filter: brightness(1.15) contrast(1.1);
}

.corporate-identity {
  color: #edf2f7;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 900;
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 2px;
  transition: text-shadow 0.6s ease;
}

.premier-logo-gateway:hover .corporate-identity {
  text-shadow: 0 0 10px rgba(236, 201, 75, 0.6);
}

.switch-panel {
  display: none;
}

@media screen and (max-width: 1200px) {
  .switch-panel {
    display: flex;
    align-items: center;
  }
}

.essential-nav-center .guidance-components {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1200px) {
  .essential-nav-center .guidance-components {
    display: flex;
    align-items: center;
    gap: clamp(25px, 3.5vw, 35px);
  }
}

.path-element {
  position: relative;
}

.gateway-link {
  color: #cbd5e0;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 18px);
  padding: 10px 15px;
  border-radius: 10px;
  transition: color 0.5s ease, background-color 0.5s ease;
  position: relative;
  overflow: hidden;
}

.gateway-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #ecc94b;
  transition: width 0.5s ease;
}

.gateway-link:hover {
  color: #ecc94b;
}

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

.burger {
  width: 32px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.burger:hover {
  opacity: 0.8;
}

.burger::before,
.burger::after,
.burger span {
  width: 100%;
  height: 4px;
  background: #cbd5e0;
  border-radius: 2px;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

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

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

.burger.is-open span {
  opacity: 0;
  transform: translateX(-20px);
}

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

.premier-portable-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #2d3748, #1a202c);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.8s ease-in-out;
  z-index: 99;
}

.premier-portable-panel.is-open {
  display: block;
  max-height: 500px;
}

.handheld-guide-assembly {
  list-style: none;
  margin: 0;
  padding: clamp(20px, 5vw, 30px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.handheld-path-module {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.premier-portable-panel.is-open .handheld-path-module {
  opacity: 1;
  transform: translateY(0);
}

.premier-portable-panel.is-open .handheld-path-module:nth-child(1) {
  transition-delay: 0.2s;
}

.premier-portable-panel.is-open .handheld-path-module:nth-child(2) {
  transition-delay: 0.3s;
}

.premier-portable-panel.is-open .handheld-path-module:nth-child(3) {
  transition-delay: 0.4s;
}

.mobile-nav-connection {
  color: #cbd5e0;
  text-decoration: none;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 15px;
  transition: color 0.6s ease, text-shadow 0.6s ease;
  position: relative;
}

.mobile-nav-connection::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(236, 201, 75, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.8s ease, height 0.8s ease;
  z-index: -1;
}

.mobile-nav-connection:hover {
  color: #ecc94b;
  text-shadow: 0 0 15px rgba(236, 201, 75, 0.5);
}

.mobile-nav-connection:hover::before {
  width: 400px;
  height: 400px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .superior-nav-framework {
    gap: 12px;
  }
  .emblem-visual {
    height: 40px;
  }
  .corporate-identity {
    font-size: 18px;
  }
  .mobile-nav-connection {
    font-size: 20px;
  }
}

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

.sovereign-portal-hub {
  padding: clamp(80px, 12vh, 120px) 0 clamp(60px, 8vh, 90px) 0;
  background: linear-gradient(to right, #111827 0%, #1f2937 100%);
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 160px;
}

.sovereign-portal-hub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  opacity: 0.8;
  z-index: -1;
  animation: softGlow 8s ease-in-out infinite alternate;
}

.apex-arrangement-core {
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 5vw, 50px);
  align-items: center;
}

@media screen and (min-width: 992px) {
  .apex-arrangement-core {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    gap: clamp(40px, 7vw, 70px);
  }
}

.captivating-visual-evanqirosen {
  max-width: 100%;
  opacity: 0;
  transform: perspective(600px) rotateY(20deg);
  animation: perspectiveEntry 1.4s ease-out 0.3s forwards;
  margin: 0;
}

@media screen and (min-width: 992px) {
  .captivating-visual-evanqirosen {
    max-width: 48%;
    order: 2;
  }
}

.luminous-visual-element {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: filter 0.5s ease, box-shadow 0.5s ease;
}

.luminous-visual-element:hover {
  filter: brightness(1.1) saturate(1.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.profound-narrative-zone {
  max-width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateX(-50px);
  animation: lateralSlideIn 1.1s ease-out forwards;
}

@media screen and (min-width: 992px) {
  .profound-narrative-zone {
    max-width: 42%;
    text-align: left;
    order: 1;
  }
}

.imperial-proclamation {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #f9fafb;
  line-height: 1.15;
  margin-bottom: 25px;
  position: relative;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.imperial-proclamation::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ca8a04;
  transition: width 0.5s ease, background 0.5s ease;
}

@media screen and (min-width: 992px) {
  .imperial-proclamation::before {
    left: 0;
    transform: none;
  }
}

.imperial-proclamation:hover::before {
  width: 120px;
  background: #d97706;
}

.eloquent-narration {
  font-size: clamp(17px, 2.2vw, 19px);
  color: #d4d4d8;
  line-height: 1.7;
  margin-bottom: 35px;
  font-weight: 500;
  transition: opacity 0.4s ease;
}

.eloquent-narration:hover {
  opacity: 0.85;
}

.dynamic-engagement-prompt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 1.8vw, 14px) clamp(25px, 3.5vw, 35px);
  background: #ca8a04;
  color: #111827;
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  position: relative;
  overflow: hidden;
  max-width: 220px;
}

.dynamic-engagement-prompt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  transition: height 0.6s ease;
}

.dynamic-engagement-prompt:hover {
  background: #d97706;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.dynamic-engagement-prompt:hover::after {
  height: 100%;
}

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

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

@keyframes softGlow {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .imperial-proclamation {
    font-size: clamp(26px, 7vw, 36px);
  }
  .eloquent-narration {
    font-size: clamp(15px, 3vw, 17px);
  }
  .dynamic-engagement-prompt {
    padding: 12px 25px;
    font-size: 15px;
    max-width: 180px;
  }
  .imperial-proclamation::before {
    width: 60px;
  }
  .imperial-proclamation:hover::before {
    width: 90px;
  }
}

/* ----------------------stats-section---------------------------- */

.imperial-metrics-atrium {
  padding: clamp(55px, 9vh, 80px) 0;
  background: linear-gradient(45deg, #0a192f 0%, #1c3a5e 100%);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.imperial-metrics-atrium::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle at bottom, rgba(255, 255, 255, 0.12) 0%, transparent 80%);
  animation: risingRadiance 12s linear infinite;
  z-index: -1;
}

.sovereign-indicators-ensemble {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 3vw, 30px);
  padding: clamp(20px, 4vw, 40px) 0;
}

.indicator-pod {
  flex: 1 1 clamp(200px, 25%, 250px);
  background: rgba(10, 25, 47, 0.85);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.6s ease;
}

.indicator-pod:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.25);
}

.indicator-core {
  padding: clamp(30px, 5vw, 40px);
  text-align: center;
  opacity: 0;
  transform: translateY(30px) skewY(5deg);
  animation: unveilSkew 1.3s ease-in-out forwards;
}

.indicator-pod:nth-child(1) .indicator-core {
  animation-delay: 0.15s;
}

.indicator-pod:nth-child(2) .indicator-core {
  animation-delay: 0.3s;
}

.indicator-pod:nth-child(3) .indicator-core {
  animation-delay: 0.45s;
}

.indicator-pod:nth-child(4) .indicator-core {
  animation-delay: 0.6s;
}

.indicator-magnitude {
  font-size: clamp(45px, 7vw, 65px);
  font-weight: 950;
  color: #f7fafc;
  display: block;
  margin-bottom: 10px;
  position: relative;
  transition: color 0.5s ease, text-shadow 0.5s ease;
}

.indicator-pod:hover .indicator-magnitude {
  color: #ffda7a;
  text-shadow: 0 0 12px rgba(255, 218, 122, 0.6);
}

.indicator-magnitude::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 218, 122, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: -1;
}

.indicator-pod:hover .indicator-magnitude::before {
  width: 200px;
  height: 200px;
}

.indicator-annotation {
  font-size: clamp(16px, 2vw, 18px);
  color: #a0aec0;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  transition: color 0.5s ease;
}

.indicator-pod:hover .indicator-annotation {
  color: #e2e8f0;
}

@keyframes unveilSkew {
  to {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
  }
}

@keyframes risingRadiance {
  to {
    bottom: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sovereign-indicators-ensemble {
    flex-direction: column;
    gap: 25px;
  }
  .indicator-pod {
    flex-basis: 100%;
  }
  .indicator-magnitude {
    font-size: clamp(40px, 9vw, 55px);
  }
  .indicator-annotation {
    font-size: 16px;
  }
}

/* ----------------------stats-section---------------------------- */

/* ----------------------refined-info-section---------------------------- */

.august-knowledge-vault {
  padding: clamp(65px, 11vh, 100px) 0;
  background: radial-gradient(circle at center, #0d1b2a 0%, #1a2b3c 100%);
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.august-knowledge-vault::after {
  content: "";
  position: absolute;
  top: 0;
  right: -50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 10%, transparent 50%);
  animation: orbitGlow 15s linear infinite;
  z-index: -1;
}

.sumptuous-insight-composition {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: scale(0.92);
  animation: expandReveal 1.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.splendid-declaration {
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 850;
  color: #f8fafc;
  margin-bottom: 30px;
  line-height: 1.3;
  position: relative;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
}

.splendid-declaration::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: #c49a6c;
  transition: width 0.6s ease, background 0.6s ease;
}

.splendid-declaration:hover::before {
  width: 140px;
  background: #d4af37;
}

.lavish-exposition-area {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateX(50px);
  animation: sideGlide 1.7s ease-in-out 0.3s forwards;
}

.exquisite-prose {
  font-size: clamp(18px, 2.4vw, 20px);
  color: #cbd5e1;
  line-height: 1.8;
  font-weight: 450;
  margin: 0;
  letter-spacing: 0.6px;
  transition: text-shadow 0.5s ease;
}

.exquisite-prose:hover {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.highlighted-entity {
  font-style: normal;
  font-weight: 750;
  color: #d4af37;
  position: relative;
  padding-bottom: 3px;
}

.highlighted-entity::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #c49a6c, transparent);
  transition: height 0.5s ease;
}

.highlighted-entity:hover::after {
  height: 3px;
}

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

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

@keyframes orbitGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .splendid-declaration {
    font-size: clamp(28px, 6vw, 38px);
  }
  .exquisite-prose {
    font-size: clamp(16px, 3vw, 18px);
  }
  .splendid-declaration::before {
    width: 70px;
  }
  .splendid-declaration:hover::before {
    width: 100px;
  }
}

/* ----------------------refined-info-section---------------------------- */

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

.eminent-offering-exposition {
  padding: clamp(75px, 12vh, 130px) 0;
  background: linear-gradient(180deg, #0c1828 0%, #192a3c 100%);
  position: relative;
  overflow: hidden;
  z-index: 4;
}

.eminent-offering-exposition::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  animation: gentleRadiate 14s ease-in-out infinite;
  z-index: -1;
}

.regal-division-proclamation {
  font-size: clamp(36px, 5.2vw, 52px);
  font-weight: 850;
  color: #f1f5f9;
  text-align: center;
  margin-bottom: clamp(35px, 6vw, 55px);
  position: relative;
  opacity: 0;
  transform: translateY(-40px);
  animation: descendElegance 1.3s ease-in-out forwards;
}

.regal-division-proclamation::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 5px;
  background: #b08a4c;
  transition: width 0.6s ease;
}

.regal-division-proclamation:hover::after {
  width: 140px;
}

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

.sophisticated-offering-module {
  background: rgba(12, 24, 40, 0.9);
  border-radius: 20px;
  padding: clamp(25px, 4vw, 35px);
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  opacity: 0;
  transform: perspective(1000px) rotateY(15deg);
  animation: pivotEntry 1.1s ease-out forwards;
  position: relative;
  max-width: 380px;
  width: 100%;
}

.sophisticated-offering-module:nth-child(1) {
  animation-delay: 0.2s;
}
.sophisticated-offering-module:nth-child(2) {
  animation-delay: 0.4s;
}
.sophisticated-offering-module:nth-child(3) {
  animation-delay: 0.6s;
}

.sophisticated-offering-module:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-12px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.emblem-illustration {
  color: #b08a4c;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  transition: transform 0.7s ease, color 0.5s ease;
}

.sophisticated-offering-module:hover .emblem-illustration {
  transform: scale(1.25) rotate(-10deg);
  color: #d4af37;
}

.offering-designation {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 750;
  color: #f1f5f9;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}

.offering-elucidation {
  font-size: clamp(16px, 2.1vw, 18px);
  color: #a0b3c7;
  line-height: 1.8;
  font-weight: 450;
  margin: 0;
  transition: color 0.5s ease;
}

.sophisticated-offering-module:hover .offering-elucidation {
  color: #e2e8f0;
}

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

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

@keyframes gentleRadiate {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .eminent-offering-exposition {
    padding: clamp(45px, 9vh, 80px) 0;
  }
  .regal-division-proclamation {
    font-size: clamp(30px, 6vw, 42px);
  }
  .sumptuous-offering-mosaic {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sophisticated-offering-module {
    max-width: 100%;
    padding: 25px;
  }
  .offering-designation {
    font-size: clamp(22px, 2.8vw, 26px);
  }
  .offering-elucidation {
    font-size: clamp(15px, 2.2vw, 17px);
  }
}

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

.majestic-assistance-realm {
  padding: clamp(65px, 11vh, 115px) 0;
  background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.majestic-assistance-realm::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.1), transparent);
  animation: horizonSweep 10s linear infinite;
  z-index: -1;
}

.opulent-provision-manifesto {
  font-size: clamp(34px, 4.8vw, 46px);
  font-weight: 850;
  color: #f3f4f6;
  text-align: center;
  margin-bottom: clamp(35px, 5.5vw, 55px);
  opacity: 0;
  transform: translateX(-30px);
  animation: manifestoGlide 1.1s ease-out forwards;
  letter-spacing: 0.5px;
}

.sumptuous-provision-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(clamp(300px, 32vw, 360px), 1fr));
  gap: clamp(25px, 3.5vw, 35px);
  justify-items: center;
}

@media (max-width: 992px) {
  .sumptuous-provision-gallery {
    grid-template-columns: 1fr;
  }
}

.refined-provision-artifact {
  background: rgba(30, 41, 59, 0.85);
  border-radius: 12px;
  padding: clamp(25px, 3.5vw, 35px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(35px);
  animation: artifactElevate 0.9s ease-out forwards;
  max-width: 620px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.refined-provision-artifact:nth-child(1) {
  animation-delay: 0.15s;
}
.refined-provision-artifact:nth-child(2) {
  animation-delay: 0.35s;
}
.refined-provision-artifact:nth-child(3) {
  animation-delay: 0.55s;
}
.refined-provision-artifact:nth-child(4) {
  animation-delay: 0.75s;
}

.refined-provision-artifact:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.refined-provision-artifact::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.15), transparent);
  transition: top 0.6s ease;
  z-index: -1;
}

.refined-provision-artifact:hover::after {
  top: 0;
}

.artifact-proclamation {
  font-size: clamp(24px, 2.8vw, 27px);
  font-weight: 750;
  color: #f3f4f6;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.artifact-exposition {
  font-size: clamp(16px, 2.1vw, 18px);
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
  transition: color 0.4s ease;
}

.refined-provision-artifact:hover .artifact-exposition {
  color: #e5e7eb;
}

.luminous-invocation-portal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(12px, 1.8vw, 14px) clamp(20px, 3vw, 25px);
  background: #d4af37;
  color: #0f172a;
  text-decoration: none;
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 650;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.luminous-invocation-portal::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.luminous-invocation-portal:hover {
  background: #c49a6c;
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.luminous-invocation-portal:hover::before {
  left: 100%;
}

.portal-emblem {
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}

.luminous-invocation-portal:hover .portal-emblem {
  transform: translateX(4px);
}

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

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

@keyframes horizonSweep {
  to {
    left: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .majestic-assistance-realm {
    padding: clamp(45px, 9vh, 75px) 0;
  }
  .opulent-provision-manifesto {
    font-size: clamp(28px, 5.5vw, 36px);
  }
  .refined-provision-artifact {
    max-width: 100%;
    padding: 25px;
  }
  .artifact-proclamation {
    font-size: clamp(22px, 2.7vw, 25px);
  }
  .artifact-exposition {
    font-size: clamp(15px, 2.2vw, 17px);
  }
  .luminous-invocation-portal {
    padding: 12px 20px;
    font-size: 15px;
  }
}

/* ----------------------noble-commitment-section---------------------------- */

.sovereign-fidelity-evanqirosen {
  padding: clamp(55px, 9vh, 95px) 0;
  background: linear-gradient(to bottom, #0e1a2f 0%, #1c2b40 100%);
  position: relative;
  overflow: hidden;
  z-index: 6;
}

.sovereign-fidelity-evanqirosen::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  animation: etherealBloom 16s ease-in-out infinite alternate;
  z-index: -1;
}

.august-veracity-assembly {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: perspective(1200px) rotateX(-10deg);
  animation: veracityUnfold 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.imperial-manifesto {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  color: #f1f5f9;
  margin-bottom: 28px;
  line-height: 1.25;
  letter-spacing: 0.4px;
  text-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  transition: text-shadow 0.5s ease;
}

.imperial-manifesto:hover {
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.exquisite-veracity-narrative {
  max-width: 950px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  animation: narrativeAscension 1.6s ease-in-out 0.25s forwards;
}

.refined-discourse {
  font-size: clamp(18px, 2.3vw, 20px);
  color: #cbd5e1;
  line-height: 1.85;
  font-weight: 450;
  margin: 0;
  transition: opacity 0.5s ease;
}

.refined-discourse:hover {
  opacity: 0.9;
}

.distinguished-emphasis {
  font-weight: 800;
  color: #d4af37;
  padding: 0 6px;
  border-radius: 5px;
  transition: box-shadow 0.5s ease;
}

.distinguished-emphasis:hover {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

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

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

@keyframes etherealBloom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sovereign-fidelity-evanqirosen {
    padding: clamp(35px, 7vh, 60px) 0;
  }
  .imperial-manifesto {
    font-size: clamp(28px, 6vw, 38px);
  }
  .refined-discourse {
    font-size: clamp(16px, 3vw, 18px);
  }
}

/* ----------------------noble-commitment-section---------------------------- */

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

.imperious-alliance-territory {
  padding: clamp(75px, 12vh, 125px) 0;
  background: linear-gradient(to bottom, #0d1b2a 0%, #1a2b3c 100%);
  position: relative;
  overflow: hidden;
  z-index: 7;
}

.imperious-alliance-territory::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  opacity: 0.7;
  z-index: -1;
  animation: subtleRadiance 12s ease-in-out infinite alternate;
}

.lavish-interaction-matrix {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 5vw, 45px);
  align-items: center;
}

@media (min-width: 992px) {
  .lavish-interaction-matrix {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}

.imperial-guidance-segment {
  max-width: 100%;
  opacity: 0;
  transform: translateX(30px);
  animation: guidanceManifest 1.2s ease-out forwards;
}

@media (min-width: 992px) {
  .imperial-guidance-segment {
    max-width: 45%;
  }
}

.august-principal-edict {
  font-size: clamp(34px, 4.8vw, 44px);
  font-weight: 850;
  color: #f3f4f6;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: color 0.4s ease;
}

@media (min-width: 992px) {
  .august-principal-edict {
    text-align: left;
  }
}

.august-principal-edict:hover {
  color: #d4af37;
}

.sumptuous-auxiliary-decree {
  font-size: clamp(17px, 2.1vw, 19px);
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
  transition: color 0.4s ease;
}

@media (min-width: 992px) {
  .sumptuous-auxiliary-decree {
    text-align: left;
  }
}

.sumptuous-auxiliary-decree:hover {
  color: #e5e7eb;
}

.aristocratic-engagement-roster {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.engagement-record {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: recordEmerge 1s ease-out forwards;
}

.engagement-record:nth-child(1) {
  animation-delay: 0.2s;
}
.engagement-record:nth-child(2) {
  animation-delay: 0.4s;
}
.engagement-record:nth-child(3) {
  animation-delay: 0.6s;
}

.record-emblem {
  width: 22px;
  height: 22px;
  color: #d4af37;
  margin-top: 3px;
  transition: transform 0.4s ease, color 0.4s ease;
}

.engagement-record:hover .record-emblem {
  transform: rotate(10deg) scale(1.2);
  color: #c49a6c;
}

.record-designation {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 650;
  color: #f3f4f6;
  margin: 0;
}

.record-specification {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #94a3b8;
  margin: 5px 0 0 0;
  transition: color 0.4s ease;
}

.engagement-record:hover .record-specification {
  color: #e5e7eb;
}

.record-specification a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.4s ease;
}

.record-specification a:hover {
  color: #c49a6c;
}

.conformity-declaration {
  margin-top: 30px;
  opacity: 0;
  transform: scale(0.95);
  animation: declarationExpand 1s ease-out 0.8s forwards;
}

.alliance__protocol {
  max-width: 100%;
  background: rgba(30, 41, 59, 0.85);
  border-radius: 14px;
  padding: clamp(25px, 3.5vw, 35px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateX(-30px);
  animation: protocolReveal 1.2s ease-out 0.3s forwards;
}

@media (min-width: 992px) {
  .alliance__protocol {
    max-width: 45%;
  }
}

.alliance__protocol {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 25px);
}

.protocol-division {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.protocol-legend {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 550;
  color: #f3f4f6;
}

.protocol-entry-portal,
.protocol-multiline-portal {
  padding: 12px 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  font-size: clamp(15px, 1.6vw, 17px);
  background: rgba(15, 23, 42, 0.5);
  color: #e5e7eb;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.protocol-entry-portal:focus,
.protocol-multiline-portal:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  outline: none;
}

.protocol-multiline-portal {
  resize: vertical;
  min-height: 120px;
}

.protocol-advisory {
  font-size: clamp(13px, 1.4vw, 15px);
  color: #94a3b8;
  text-align: center;
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.protocol-advisory:hover {
  color: #e5e7eb;
}

.advisory-portal {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.4s ease;
}

.advisory-portal:hover {
  color: #c49a6c;
}

.protocol-activation-command {
  max-width: 200px;
  margin: 0 auto;
  padding: 12px 0;
  background: #d4af37;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 650;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}

.protocol-activation-command::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.protocol-activation-command:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  background: #c49a6c;
}

.protocol-activation-command:hover::before {
  left: 100%;
}

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

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

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

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

@keyframes subtleRadiance {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .imperious-alliance-territory {
    padding: clamp(45px, 9vh, 75px) 0;
  }
  .august-principal-edict {
    font-size: clamp(26px, 5.5vw, 34px);
  }
  .sumptuous-auxiliary-decree {
    font-size: clamp(15px, 2.2vw, 17px);
  }
  .record-designation {
    font-size: clamp(17px, 1.9vw, 19px);
  }
  .record-specification {
    font-size: clamp(14px, 1.7vw, 16px);
  }
  .alliance__protocol {
    padding: 20px;
  }
  .protocol-legend {
    font-size: 15px;
  }
  .protocol-entry-portal,
  .protocol-multiline-portal {
    font-size: 15px;
  }
  .protocol-advisory {
    font-size: 13px;
  }
  .protocol-activation-command {
    font-size: 15px;
    max-width: 180px;
  }
}

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

.sovereign-conclusion-enclave {
  padding: clamp(45px, 8vh, 85px) 0;
  background: linear-gradient(to bottom, #0e1a2f 0%, #1c2b40 100%);
  position: relative;
  overflow: hidden;
  z-index: 8;
}

.sovereign-conclusion-enclave::after {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 160%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  animation: luminousExpansion 18s ease-in-out infinite;
  z-index: -1;
}

.aristocratic-termination-navigator {
  max-width: 800px;
  margin: 0 auto 30px auto;
  opacity: 0;
  transform: translateY(-20px);
  animation: navigatorDescent 1.4s ease-in-out forwards;
}

.exalted-conclusion-catalog {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(15px, 2vw, 25px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.conclusion-entity {
  opacity: 0;
  transform: scale(0.9);
  animation: entityBloom 0.8s ease-out forwards;
}

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

.termination-conduit {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #d4af37;
  text-decoration: none;
  font-weight: 550;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.termination-conduit:hover {
  color: #c49a6c;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.imperial-termination-declaration {
  max-width: 1000px;
  margin: 0 auto 30px auto;
  opacity: 0;
  transform: translateX(20px);
  animation: declarationGlide 1.5s ease-in-out 0.6s forwards;
}

.eloquent-termination-proclamation {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #a0aec0;
  line-height: 1.7;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.eloquent-termination-proclamation:hover {
  color: #e2e8f0;
}

.eloquent-termination-proclamation strong {
  color: #f3f4f6;
  font-weight: 650;
}

.majestic-ownership-affirmation {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #a0aec0;
  font-weight: 450;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: affirmationRise 1.2s ease-out 0.8s forwards;
  transition: color 0.4s ease;
}

.majestic-ownership-affirmation:hover {
  color: #e2e8f0;
}

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

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

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

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

@keyframes luminousExpansion {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.15);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sovereign-conclusion-enclave {
    padding: clamp(25px, 6vh, 45px) 0;
  }
  .eloquent-termination-proclamation {
    font-size: clamp(13px, 1.5vw, 15px);
  }
  .majestic-ownership-affirmation {
    font-size: clamp(13px, 1.5vw, 15px);
  }
  .exalted-conclusion-catalog {
    flex-direction: column;
    gap: 15px;
  }
  .termination-conduit {
    font-size: clamp(13px, 1.5vw, 15px);
  }
}

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

.elegant-cookie-notice {
  position: fixed;
  bottom: clamp(20px, 3vw, 30px);
  right: clamp(20px, 3vw, 30px);
  max-width: clamp(300px, 35vw, 400px);
  width: 90%;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 31, 63, 0.2);
  z-index: 1000;
  opacity: 0;
  transform: translateY(60px);
  animation: cookieSlideUp 0.8s ease-out forwards;
  transition: box-shadow 0.4s ease;
}

.elegant-cookie-notice:hover {
  box-shadow: 0 12px 35px rgba(0, 31, 63, 0.3);
}

.refined-cookie-content {
  padding: clamp(20px, 3vw, 25px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.prestige-cookie-heading {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 15px;
  position: relative;
}

.prestige-cookie-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #ffd700, #d4af37);
  margin: 10px auto 0;
  transition: width 0.4s ease;
}

.prestige-cookie-heading:hover::after {
  width: 80px;
}

.sophisticated-cookie-text {
  font-size: clamp(13px, 1.6vw, 14px);
  color: #333333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.noble-cookie-actions {
  display: flex;
  gap: clamp(15px, 2vw, 20px);
}

.luxury-accept-button {
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
  background: linear-gradient(135deg, #001f3f 0%, #004080 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.luxury-accept-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 31, 63, 0.3);
}

.luxury-accept-button::before {
  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, transform 0.5s ease;
  transform: scale(0);
}

.luxury-accept-button:hover::before {
  opacity: 1;
  transform: scale(1);
}

.luxury-reject-button {
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
  background: #e8edf3;
  color: #001f3f;
  border: none;
  border-radius: 50px;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.luxury-reject-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 31, 63, 0.2);
  background: #d0d4d8;
}

.luxury-reject-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0);
}

.luxury-reject-button:hover::before {
  opacity: 1;
  transform: scale(1);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .elegant-cookie-notice {
    max-width: 90%;
    bottom: 15px;
    right: 15px;
    padding: 15px;
  }
  .prestige-cookie-heading {
    font-size: clamp(16px, 2vw, 18px);
  }
  .sophisticated-cookie-text {
    font-size: clamp(12px, 1.5vw, 13px);
  }
  .luxury-accept-button,
  .luxury-reject-button {
    padding: 8px 20px;
    font-size: clamp(12px, 1.4vw, 13px);
  }
}

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