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

.executive-premium-navbar {
    background: #121212;
    padding: clamp(15px, 2.5vw, 25px) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sophisticated-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(30px, 5vw, 50px);
    animation: elegantSlideDown 1.2s ease-in-out;
}

.elite-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.elite-logo-link:hover {
    transform: scale(1.05) rotate(2deg);
}

.prestige-logo-img {
    height: clamp(45px, 6vw, 55px);
    width: auto;
    filter: brightness(1.1);
    transition: filter 0.5s ease;
}

.elite-logo-link:hover .prestige-logo-img {
    filter: brightness(1.3) drop-shadow(0 0 8px rgba(0, 191, 255, 0.4));
}

.brand-title {
    color: #ffffff;
    font-size: clamp(20px, 2.5vw, 24px);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: color 0.5s ease;
}

.elite-logo-link:hover .brand-title {
    color: #00bfff;
}

.mobile-toggle-controls {
    display: none;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    .mobile-toggle-controls {
        display: flex;
    }
}

.corporate-menu-bar .executive-menu-items {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 1200px) {
    .corporate-menu-bar .executive-menu-items {
        display: flex;
        align-items: center;
        gap: clamp(30px, 4vw, 40px);
    }
}

.prestige-menu-item {
    position: relative;
    overflow: hidden;
}

.corporate-nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(16px, 2vw, 19px);
    transition: color 0.5s ease, padding-left 0.5s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 4px;
}

.corporate-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(0, 191, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.corporate-nav-link:hover {
    color: #00bfff;
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.corporate-nav-link:hover::before {
    left: 100%;
}

.burger {
    width: 32px;
    height: 26px;
    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: 3px;
    background: #e0e0e0;
    border-radius: 3px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

.burger.is-open::before {
    transform: rotate(135deg) translate(0, -8px);
}

.burger.is-open::after {
    transform: rotate(-135deg) translate(0, 8px);
}

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

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

.refined-mobile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    z-index: 99;
}

.refined-mobile-dropdown.is-open {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-executive-list {
    list-style: none;
    margin: 0;
    padding: clamp(25px, 6vw, 35px) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-prestige-item {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.refined-mobile-dropdown.is-open .mobile-prestige-item {
    opacity: 1;
    transform: scale(1);
}

.refined-mobile-dropdown.is-open .mobile-prestige-item:nth-child(1) {
    transition-delay: 0.15s;
}

.refined-mobile-dropdown.is-open .mobile-prestige-item:nth-child(2) {
    transition-delay: 0.25s;
}

.refined-mobile-dropdown.is-open .mobile-prestige-item:nth-child(3) {
    transition-delay: 0.35s;
}

.mobile-corporate-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: clamp(22px, 4.5vw, 26px);
    font-weight: 600;
    transition: color 0.5s ease, letter-spacing 0.5s ease;
    position: relative;
    padding: 10px 15px;
    border-radius: 6px;
}

.mobile-corporate-link:hover {
    color: #00bfff;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.03);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .sophisticated-nav-wrapper {
        gap: 15px;
    }
    .prestige-logo-img {
        height: 45px;
    }
    .brand-title {
        font-size: 20px;
    }
    .mobile-corporate-link {
        font-size: 22px;
    }
}

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

.opulent-gateway-panel {
    padding: clamp(70px, 14vh, 140px) 0;
    background: linear-gradient(to right, #0f0f0f 0%, #1f1f1f 100%);
    overflow: hidden;
    position: relative;
}

.opulent-gateway-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05), transparent 70%);
    opacity: 0.5;
    z-index: 1;
}

.regal-content-framework {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(40px, 6vw, 60px);
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 992px) {
    .regal-content-framework {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.imperial-narrative-section {
    max-width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateX(-50px);
    animation: gracefulSlideInLeft 1.4s ease-in-out forwards;
}

@media screen and (min-width: 992px) {
    .imperial-narrative-section {
        max-width: 48%;
        text-align: left;
    }
}

.majestic-primary-caption {
    font-size: clamp(34px, 5.5vw, 52px);
    font-weight: 900;
    color: #f5f5f5;
    line-height: 1.15;
    margin-bottom: 30px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.majestic-primary-caption::before {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    background: linear-gradient(to right, #d4af37, #ffd700);
    transition: width 0.6s ease;
    margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
    .majestic-primary-caption::before {
        margin: 0 0 20px 0;
    }
}

.imperial-narrative-section:hover .majestic-primary-caption::before {
    width: 100px;
}

.exquisite-narrative-text {
    font-size: clamp(17px, 2.2vw, 19px);
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.sovereign-engagement-prompt {
    display: inline-block;
    padding: clamp(12px, 1.8vw, 16px) clamp(30px, 3.5vw, 40px);
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #0f0f0f;
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
    transition: box-shadow 0.5s ease, transform 0.5s ease, background 0.5s ease;
    position: relative;
    overflow: hidden;
    max-width: 200px;
}

.sovereign-engagement-prompt::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transform: rotate(45deg) scale(0);
}

.sovereign-engagement-prompt:hover {
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
}

.sovereign-engagement-prompt:hover::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.aristocratic-visual-ophelirantov {
    max-width: 100%;
    opacity: 0;
    transform: translateX(50px);
    animation: gracefulSlideInRight 1.4s ease-in-out 0.4s forwards;
}

@media screen and (min-width: 992px) {
    .aristocratic-visual-ophelirantov {
        max-width: 48%;
    }
}

.sumptuous-graphic-presentation {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.6s ease, transform 0.6s ease, filter 0.6s ease;
    filter: brightness(1);
}

.sumptuous-graphic-presentation:hover {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
    filter: brightness(1.1);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .majestic-primary-caption {
        font-size: clamp(26px, 8vw, 38px);
    }
    .exquisite-narrative-text {
        font-size: clamp(15px, 3.5vw, 17px);
    }
    .sovereign-engagement-prompt {
        padding: 12px 30px;
        font-size: 15px;
    }
    .majestic-primary-caption::before {
        margin-bottom: 15px;
    }
    .imperial-narrative-section:hover .majestic-primary-caption::before {
        width: 80px;
    }
}


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

.sumptuous-metrics-vitrine {
    padding: clamp(50px, 8vh, 80px) 0;
    background: linear-gradient(to bottom, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.sumptuous-metrics-vitrine::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #c0a062, transparent);
    opacity: 0.6;
}

.opulent-stats-assemblage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(25px, 4vw, 40px);
    padding: clamp(25px, 5vw, 50px) 0;
}

.metric-ensemble {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: clamp(25px, 4vw, 35px);
    text-align: center;
    box-shadow: 0 4px 15px rgba(192, 160, 98, 0.1);
    transition: background 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: scale(0.85);
    animation: metricEmergence 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    position: relative;
    width: 100%;
    max-width: 280px;
    border: 1px solid rgba(192, 160, 98, 0.15);
}

.metric-ensemble:nth-child(1) {
    animation-delay: 0.3s;
}

.metric-ensemble:nth-child(2) {
    animation-delay: 0.5s;
}

.metric-ensemble:nth-child(3) {
    animation-delay: 0.7s;
}

.metric-ensemble:nth-child(4) {
    animation-delay: 0.9s;
}

.metric-ensemble::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(192, 160, 98, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.metric-ensemble:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(192, 160, 98, 0.3);
    transform: scale(1.05);
}

.metric-ensemble:hover::after {
    opacity: 1;
}

.metric-quantum {
    font-size: clamp(38px, 6.5vw, 50px);
    font-weight: 900;
    color: #f0f0f0;
    margin: 0 0 15px 0;
    line-height: 1.1;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.metric-quantum::before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #c0a062;
    margin: 0 auto 15px;
    transition: transform 0.5s ease;
}

.metric-ensemble:hover .metric-quantum::before {
    transform: scaleX(1.5);
}

.metric-exposition {
    font-size: clamp(15px, 2.2vw, 17px);
    color: #d8d8d8;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.8px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .opulent-stats-assemblage {
        flex-direction: column;
        gap: 25px;
    }
    .metric-ensemble {
        max-width: 100%;
        padding: 25px;
    }
    .metric-quantum {
        font-size: clamp(30px, 5.5vw, 40px);
    }
    .metric-exposition {
        font-size: clamp(14px, 2.5vw, 16px);
    }
}

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


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

.lavish-insight-ophelirantov {
    padding: clamp(80px, 13vh, 140px) 0;
    background: linear-gradient(180deg, #0d0d0d 0%, #1c1c1c 100%);
    position: relative;
    overflow: hidden;
}

.lavish-insight-ophelirantov::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, rgba(192, 160, 98, 0.08), transparent 50%);
    z-index: 1;
}

.patrician-knowledge-hub {
    max-width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: dignifiedManifestation 1.5s ease-in-out forwards;
}

.imperious-core-heading {
    font-size: clamp(32px, 5.5vw, 46px);
    font-weight: 900;
    color: #f8f8f8;
    margin-bottom: 35px;
    position: relative;
    line-height: 1.25;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.imperious-core-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #c0a062, #e0c080);
    transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.patrician-knowledge-hub:hover .imperious-core-heading::after {
    width: 120px;
}

.aristocratic-insight-narrative {
    max-width: 850px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: narrativeAscension 1.4s ease-in-out 0.4s forwards;
}

.sumptuous-explanatory-prose {
    font-size: clamp(17px, 2.2vw, 19px);
    color: #e0e0e0;
    line-height: 1.9;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.6px;
}

.eminent-brand-emphasis {
    font-weight: 800;
    color: #c0a062;
    position: relative;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background 0.5s ease;
}

.eminent-brand-emphasis:hover {
    background: rgba(192, 160, 98, 0.15);
    box-shadow: 0 0 10px rgba(192, 160, 98, 0.3);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .imperious-core-heading {
        font-size: clamp(26px, 6.5vw, 38px);
    }
    .sumptuous-explanatory-prose {
        font-size: clamp(15px, 3vw, 17px);
    }
    .patrician-knowledge-hub:hover .imperious-core-heading::after {
        width: 90px;
    }
}

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





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

.exalted-offering-exposition {
    padding: clamp(90px, 14vh, 150px) 0;
    background: linear-gradient(to top, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.exalted-offering-exposition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom center, rgba(212, 175, 55, 0.1), transparent 60%);
    z-index: 1;
}

.illustrious-offering-header {
    font-size: clamp(34px, 5.5vw, 48px);
    font-weight: 900;
    color: #f5f5f5;
    text-align: center;
    margin-bottom: clamp(45px, 7vw, 65px);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    animation: headerAscend 1.1s ease-in-out forwards;
}

.illustrious-offering-header::before {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    background: linear-gradient(to right, #e0c080, #c0a062);
    margin: 20px auto 0;
    transition: width 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.exalted-offering-exposition:hover .illustrious-offering-header::before {
    width: 160px;
}

.distinguished-offering-array {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(260px, 32vw, 320px), 1fr));
    gap: clamp(30px, 5vw, 40px);
    justify-items: center;
    position: relative;
    z-index: 2;
}

.eminent-offering-module {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: clamp(30px, 5vw, 40px);
    text-align: center;
    box-shadow: 0 5px 20px rgba(192, 160, 98, 0.15);
    transition: box-shadow 0.6s ease, transform 0.6s ease;
    opacity: 0;
    transform: rotateY(-15deg);
    animation: moduleReveal 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    position: relative;
    overflow: hidden;
    max-width: 380px;
    width: 100%;
    border: 1px solid rgba(192, 160, 98, 0.1);
}

.eminent-offering-module:nth-child(1) { animation-delay: 0.3s; }
.eminent-offering-module:nth-child(2) { animation-delay: 0.5s; }
.eminent-offering-module:nth-child(3) { animation-delay: 0.7s; }

.eminent-offering-module::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 160, 98, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease, right 0.6s ease;
    transform: skew(45deg);
}

.eminent-offering-module:hover {
    box-shadow: 0 10px 30px rgba(192, 160, 98, 0.4);
    transform: translateY(-6px);
}

.eminent-offering-module:hover::before {
    opacity: 1;
    right: 100%;
}

.offering-emblem {
    color: #c0a062;
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
    transition: transform 0.6s ease, color 0.6s ease;
}

.eminent-offering-module:hover .offering-emblem {
    transform: scale(1.15) rotate(10deg);
    color: #ffd700;
}

.offering-caption {
    font-size: clamp(21px, 2.7vw, 25px);
    font-weight: 800;
    color: #f0f0f0;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.offering-narrative {
    font-size: clamp(15px, 1.9vw, 17px);
    color: #d8d8d8;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.7px;
}

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

@keyframes moduleReveal {
    to {
        opacity: 1;
        transform: rotateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .exalted-offering-exposition {
        padding: clamp(60px, 12vh, 90px) 0;
    }
    .illustrious-offering-header {
        font-size: clamp(28px, 6.5vw, 38px);
    }
    .distinguished-offering-array {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .eminent-offering-module {
        max-width: 100%;
    }
    .offering-caption {
        font-size: clamp(19px, 2.7vw, 23px);
    }
    .offering-narrative {
        font-size: clamp(14px, 2.2vw, 16px);
    }
}

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

.regal-provision-gallery {
    padding: clamp(70px, 11vh, 130px) 0;
    background: linear-gradient(to top, #1c1c1c 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.regal-provision-gallery::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(192, 160, 98, 0.05), transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.sovereign-provision-banner {
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 900;
    color: #f8f8f8;
    text-align: center;
    margin-bottom: clamp(35px, 5vw, 55px);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0.9);
    animation: bannerMagnify 1.3s ease-in-out forwards;
}

.sovereign-provision-banner::after {
    content: '';
    display: block;
    width: 90px;
    height: 2px;
    background: #e0c080;
    margin: 15px auto 0;
    transition: transform 0.6s ease;
}

.regal-provision-gallery:hover .sovereign-provision-banner::after {
    transform: scaleX(1.3);
}

.majestic-provision-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(290px, 32vw, 340px), 1fr));
    gap: clamp(20px, 3vw, 30px);
    justify-items: center;
    position: relative;
    z-index: 2;
}

.noble-provision-capsule {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: clamp(20px, 3vw, 30px);
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.5s ease, background 0.5s ease;
    opacity: 0;
    transform: translateX(-40px);
    animation: capsuleGlide 1.1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    max-width: 550px;
    width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.noble-provision-capsule:nth-child(1) { animation-delay: 0.1s; }
.noble-provision-capsule:nth-child(2) { animation-delay: 0.3s; }
.noble-provision-capsule:nth-child(3) { animation-delay: 0.5s; }
.noble-provision-capsule:nth-child(4) { animation-delay: 0.7s; }

.noble-provision-capsule:hover {
    box-shadow: 0 7px 25px rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.07);
}

.noble-provision-capsule::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 200%;
    height: 50%;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.15), transparent);
    transform: skew(-45deg);
    transition: left 0.7s ease;
}

.noble-provision-capsule:hover::before {
    left: 100%;
}

.provision-titular {
    font-size: clamp(19px, 2.4vw, 23px);
    font-weight: 800;
    color: #f0f0f0;
    margin-bottom: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.provision-elucidation {
    font-size: clamp(13px, 1.7vw, 15px);
    color: #d0d0d0;
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
    letter-spacing: 0.4px;
}

.august-invitation-portal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: clamp(8px, 1.2vw, 10px) clamp(18px, 2.2vw, 23px);
    background: linear-gradient(135deg, #c0a062 0%, #e0c080 100%);
    color: #0a0a0a;
    text-decoration: none;
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 700;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.august-invitation-portal:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.45);
}

.august-invitation-portal::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    transition: top 0.5s ease;
}

.august-invitation-portal:hover::after {
    top: 100%;
}

.invitation-symbol {
    width: 18px;
    height: 18px;
    transition: transform 0.5s ease;
}

.august-invitation-portal:hover .invitation-symbol {
    transform: translateX(3px) scale(1.1);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .regal-provision-gallery {
        padding: clamp(40px, 8vh, 70px) 0;
    }
    .sovereign-provision-banner {
        font-size: clamp(24px, 5.5vw, 34px);
    }
    .noble-provision-capsule {
        max-width: 100%;
    }
    .provision-titular {
        font-size: clamp(17px, 2.4vw, 21px);
    }
    .provision-elucidation {
        font-size: clamp(12px, 1.9vw, 14px);
    }
    .august-invitation-portal {
        padding: 8px 18px;
        font-size: 13px;
    }
}

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

.imperial-pledge-sanctum {
    padding: clamp(60px, 10vh, 110px) 0;
    background: linear-gradient(to bottom, #0d0d0d 0%, #1c1c1c 100%);
    position: relative;
    overflow: hidden;
}

.imperial-pledge-sanctum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.12), transparent 60%);
    z-index: 1;
}

.august-pledge-enclave {
    max-width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: statelyUnveiling 1.4s ease-in-out forwards;
}

.grand-pledge-proclamation {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 900;
    color: #fafafa;
    margin-bottom: 25px;
    position: relative;
    line-height: 1.3;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.grand-pledge-proclamation::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 5px;
    background: linear-gradient(to right, #e0c080, #c0a062);
    transition: width 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.august-pledge-enclave:hover .grand-pledge-proclamation::before {
    width: 130px;
}

.opulent-pledge-discourse {
    max-width: 950px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(35px);
    animation: discourseElevation 1.5s ease-in-out 0.5s forwards;
}

.exalted-elucidatory-passage {
    font-size: clamp(15px, 1.9vw, 17px);
    color: #e8e8e8;
    line-height: 1.85;
    font-weight: 300;
    margin: 0;
    letter-spacing: 1px;
}

.distinguished-entity-accent {
    font-weight: 900;
    color: #e0c080;
    position: relative;
    padding: 3px 8px;
    transition: box-shadow 0.6s ease;
}

.distinguished-entity-accent:hover {
    box-shadow: 0 0 12px rgba(224, 192, 128, 0.4);
    border-radius: 5px;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .imperial-pledge-sanctum {
        padding: clamp(40px, 8vh, 70px) 0;
    }
    .grand-pledge-proclamation {
        font-size: clamp(22px, 5.5vw, 34px);
    }
    .exalted-elucidatory-passage {
        font-size: clamp(13px, 2.3vw, 15px);
    }
    .august-pledge-enclave:hover .grand-pledge-proclamation::before {
        width: 100px;
    }
}

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




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

.sovereign-engagement-atrium {
    padding: clamp(90px, 13vh, 150px) 0;
    background: linear-gradient(to bottom, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.sovereign-engagement-atrium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(224, 192, 128, 0.08), transparent 50%);
    z-index: 1;
}

.exquisite-engagement-configuration {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 6vw, 60px);
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .exquisite-engagement-configuration {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.illustrious-intelligence-compendium {
    max-width: 100%;
    opacity: 0;
    transform: translateX(-50px);
    animation: compendiumIngress 1.2s ease-in-out forwards;
}

@media (min-width: 992px) {
    .illustrious-intelligence-compendium {
        max-width: 48%;
    }
}

.regal-engagement-declaration {
    font-size: clamp(32px, 5.5vw, 46px);
    font-weight: 900;
    color: #f5f5f5;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
    .regal-engagement-declaration {
        text-align: left;
    }
}

.regal-engagement-declaration::after {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    background: linear-gradient(to right, #c0a062, #e0c080);
    margin: 20px auto 0;
    transition: width 0.6s ease;
}

@media (min-width: 992px) {
    .regal-engagement-declaration::after {
        margin: 20px 0 0;
    }
}

.illustrious-intelligence-compendium:hover .regal-engagement-declaration::after {
    width: 140px;
}

.opulent-engagement-exhortation {
    font-size: clamp(17px, 2.2vw, 19px);
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 300;
}

@media (min-width: 992px) {
    .opulent-engagement-exhortation {
        text-align: left;
    }
}

.august-intelligence-catalog {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.intelligence-specimen {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: scale(0.9);
    animation: specimenManifestation 0.9s ease-in-out forwards;
}

.intelligence-specimen:nth-child(1) { animation-delay: 0.3s; }
.intelligence-specimen:nth-child(2) { animation-delay: 0.5s; }
.intelligence-specimen:nth-child(3) { animation-delay: 0.7s; }

.specimen-emblem {
    width: 24px;
    height: 24px;
    color: #c0a062;
    transition: transform 0.5s ease, color 0.5s ease;
}

.intelligence-specimen:hover .specimen-emblem {
    transform: rotate(15deg) scale(1.3);
    color: #ffd700;
}

.specimen-denotation {
    font-size: clamp(19px, 2.2vw, 21px);
    font-weight: 700;
    color: #f0f0f0;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.specimen-exposition {
    font-size: clamp(15px, 1.9vw, 17px);
    color: #d8d8d8;
    margin: 8px 0 0 0;
}

.exposition-connection {
    color: #c0a062;
    text-decoration: none;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.exposition-connection:hover {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.conformity-disquisition {
    margin-top: 35px;
    opacity: 0;
    transform: translateY(30px);
    animation: disquisitionAscent 1s ease-in-out 0.9s forwards;
}

.majestic-inquiry-sanctuary {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: clamp(30px, 5vw, 40px);
    box-shadow: 0 8px 25px rgba(192, 160, 98, 0.15);
    opacity: 0;
    transform: translateX(50px);
    animation: sanctuaryIngress 1.2s ease-in-out 0.4s forwards;
    border: 1px solid rgba(192, 160, 98, 0.12);
}

@media (min-width: 992px) {
    .majestic-inquiry-sanctuary {
        max-width: 48%;
    }
}

.engagement-conduit {
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 4vw, 30px);
}

.inquiry-ophelirantov {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ophelirantov-descriptor {
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 600;
    color: #e0e0e0;
}

.ophelirantov-receptor,
.ophelirantov-expanse {
    padding: 14px 18px;
    border: 1px solid rgba(192, 160, 98, 0.2);
    border-radius: 10px;
    font-size: clamp(15px, 1.7vw, 17px);
    background: rgba(255, 255, 255, 0.05);
    color: #f0f0f0;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.ophelirantov-receptor:focus,
.ophelirantov-expanse:focus {
    border-color: #c0a062;
    box-shadow: 0 0 0 4px rgba(192, 160, 98, 0.25);
    outline: none;
}

.ophelirantov-expanse {
    resize: vertical;
    min-height: 140px;
}

.ophelirantov-advisory {
    font-size: clamp(13px, 1.5vw, 15px);
    color: #d0d0d0;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 300;
}

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

.advisory-accord:hover {
    color: #ffd700;
}

.inquiry-dispatch {
    max-width: 220px;
    margin: 0 auto;
    padding: 14px 0;
    background: linear-gradient(135deg, #e0c080 0%, #c0a062 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 60px;
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.inquiry-dispatch:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(192, 160, 98, 0.4);
}

.inquiry-dispatch::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 300%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent 50%);
    opacity: 0;
    transition: opacity 0.7s ease, top 0.7s ease;
}

.inquiry-dispatch:hover::before {
    opacity: 1;
    top: 100%;
}

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

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .sovereign-engagement-atrium {
        padding: clamp(60px, 11vh, 90px) 0;
    }
    .regal-engagement-declaration {
        font-size: clamp(26px, 6vw, 38px);
    }
    .opulent-engagement-exhortation {
        font-size: clamp(15px, 2.5vw, 17px);
    }
    .specimen-denotation {
        font-size: clamp(17px, 2vw, 19px);
    }
    .specimen-exposition {
        font-size: clamp(14px, 1.7vw, 16px);
    }
    .majestic-inquiry-sanctuary {
        padding: 25px;
    }
    .ophelirantov-descriptor {
        font-size: 15px;
    }
    .ophelirantov-receptor,
    .ophelirantov-expanse {
        font-size: 15px;
    }
    .ophelirantov-advisory {
        font-size: 13px;
    }
    .inquiry-dispatch {
        font-size: 15px;
        max-width: 200px;
    }
}

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

.opulent-termination-enclave {
    padding: clamp(50px, 9vh, 90px) 0;
    background: linear-gradient(to top, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.opulent-termination-enclave::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom center, rgba(224, 192, 128, 0.1), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.sumptuous-admonition-compartment {
    max-width: 950px;
    margin: 0 auto clamp(25px, 4vw, 35px) auto;
    opacity: 0;
    transform: scale(0.95);
    animation: compartmentMagnification 1.3s ease-in-out forwards;
    position: relative;
    z-index: 2;
}

.exquisite-admonition-narrative {
    font-size: clamp(12px, 1.5vw, 14px);
    color: #e0e0e0;
    line-height: 1.75;
    margin-bottom: 25px;
    position: relative;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.exquisite-admonition-narrative strong {
    color: #f5f5f5;
    font-weight: 700;
}

.exquisite-admonition-narrative a {
    color: #e0c080;
    text-decoration: none;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.exquisite-admonition-narrative a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.regal-termination-nucleus {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(25px, 4vw, 35px);
    opacity: 0;
    transform: translateY(25px);
    animation: nucleusElevation 1.3s ease-in-out 0.4s forwards;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .regal-termination-nucleus {
        flex-direction: column;
        gap: 25px;
    }
}

.majestic-proprietary-assertion {
    font-size: clamp(12px, 1.5vw, 14px);
    color: #e0e0e0;
    font-weight: 300;
    text-align: center;
}

.aristocratic-navigation-assemblage {
    display: flex;
    justify-content: center;
}

.patrician-navigation-roster {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 3vw, 30px);
    list-style: none;
    padding: 0;
    margin: 0;
}

.roster-entity {
    opacity: 0;
    transform: rotateY(90deg);
    animation: entityRevelation 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.roster-entity:nth-child(1) { animation-delay: 0.5s; }
.roster-entity:nth-child(2) { animation-delay: 0.6s; }
.roster-entity:nth-child(3) { animation-delay: 0.7s; }
.roster-entity:nth-child(4) { animation-delay: 0.8s; }

.sovereign-navigation-bridge {
    font-size: clamp(12px, 1.5vw, 14px);
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.4s ease, padding-bottom 0.4s ease;
}

.sovereign-navigation-bridge::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #ffd700;
    transition: width 0.4s ease;
}

.sovereign-navigation-bridge:hover {
    color: #ffd700;
    padding-bottom: 4px;
}

.sovereign-navigation-bridge:hover::after {
    width: 80%;
}

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

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

@keyframes entityRevelation {
    to {
        opacity: 1;
        transform: rotateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .opulent-termination-enclave {
        padding: clamp(30px, 7vh, 50px) 0;
    }
    .exquisite-admonition-narrative {
        font-size: clamp(11px, 1.4vw, 13px);
    }
    .majestic-proprietary-assertion {
        font-size: clamp(11px, 1.4vw, 13px);
    }
    .patrician-navigation-roster {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .sovereign-navigation-bridge {
        font-size: clamp(11px, 1.4vw, 13px);
    }
}

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