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

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

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

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

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

html {
  scroll-behavior: smooth;
}

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

body.lock {
  overflow: hidden;
}

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

a {
  transition: all 0.3s ease;
}

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

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


/* header */

.luxury-nav-header {
    background: linear-gradient(to right, #001f3f, #003366);
    padding: clamp(10px, 2vw, 20px) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inner-nav-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 4vw, 40px);
    animation: subtleFadeIn 1s ease-out;
}

.premium-brand-icon {
    display: block;
    transition: filter 0.4s ease;
}

.premium-brand-icon:hover {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.icon-image {
    height: clamp(40px, 5vw, 50px);
    width: auto;
}

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

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

.primary-navigation .menu__list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 1200px) {
    .primary-navigation .menu__list {
        display: flex;
        align-items: center;
        gap: clamp(25px, 3vw, 35px);
    }
}

.nav-entry {
    position: relative;
}

.nav-connection {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(15px, 1.8vw, 18px);
    transition: color 0.4s ease, text-shadow 0.4s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-connection::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.4s ease, left 0.4s ease;
}

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

.nav-connection:hover::after {
    width: 100%;
    left: 0;
}

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

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

.burger::before,
.burger::after,
.burger span {
    width: 100%;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.4s ease;
}

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

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

.burger.is-open::before {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

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

.elite-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #001f3f, #002b5c);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
    opacity: 0;
    z-index: 99;
}

.elite-mobile-menu.is-open {
    display: block;
    transform: scaleY(1);
    opacity: 1;
}

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

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

.elite-mobile-menu.is-open .mobile-nav-entry {
    opacity: 1;
    transform: translateY(0);
}

.elite-mobile-menu.is-open .mobile-nav-entry:nth-child(1) {
    transition-delay: 0.1s;
}

.elite-mobile-menu.is-open .mobile-nav-entry:nth-child(2) {
    transition-delay: 0.2s;
}

.elite-mobile-menu.is-open .mobile-nav-entry:nth-child(3) {
    transition-delay: 0.3s;
}

.elite-mobile-menu.is-open .mobile-nav-entry:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-connection {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 700;
    transition: color 0.4s ease, transform 0.4s ease;
    position: relative;
}

.mobile-nav-connection:hover {
    color: #ffd700;
    transform: translateX(10px);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .inner-nav-layout {
        gap: 10px;
    }
    .icon-image {
        height: 40px;
    }
    .mobile-nav-connection {
        font-size: 20px;
    }
}

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

.prestige-intro-area {
    padding: clamp(60px, 12vh, 120px) 0;
    background: linear-gradient(to bottom, #f0f4f8 0%, #e0e8f0 100%);
    overflow: hidden;
}

.elite-content-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(30px, 5vw, 50px);
}

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

.sophisticated-text-block {
    max-width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: elegantRise 1.2s ease-out forwards;
}

@media screen and (min-width: 992px) {
    .sophisticated-text-block {
        max-width: 50%;
        text-align: left;
    }
}

.executive-heading {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #001f3f;
    line-height: 1.1;
    margin-bottom: 25px;
    position: relative;
}

.executive-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ffd700, #d4af37);
    margin: 15px auto 0;
    transition: width 0.5s ease;
}

@media screen and (min-width: 992px) {
    .executive-heading::after {
        margin: 15px 0 0;
    }
}

.executive-heading:hover::after {
    width: 120px;
}

.refined-paragraph {
    font-size: clamp(16px, 2vw, 18px);
    color: #333333;
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 400;
}

.premium-call-to-action {
    display: inline-block;
    padding: clamp(10px, 1.5vw, 14px) clamp(25px, 3vw, 35px);
    background: linear-gradient(135deg, #001f3f 0%, #004080 100%);
    color: #ffffff;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.2);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    position: relative;
    overflow: hidden;
}

.premium-call-to-action::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.6s ease, transform 0.6s ease;
    transform: scale(0);
}

.premium-call-to-action:hover {
    box-shadow: 0 10px 25px rgba(0, 31, 63, 0.3);
    transform: translateY(-5px);
}

.premium-call-to-action:hover::before {
    opacity: 1;
    transform: scale(1);
}

.luxury-visual-element {
    max-width: 100%;
    opacity: 0;
    transform: scale(0.9);
    animation: subtleZoomIn 1.5s ease-out 0.3s forwards;
}

@media screen and (min-width: 992px) {
    .luxury-visual-element {
        max-width: 45%;
    }
}

.elegant-image-display {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.elegant-image-display:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transform: scale(1.02);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .executive-heading {
        font-size: clamp(24px, 7vw, 36px);
    }
    .refined-paragraph {
        font-size: clamp(14px, 3vw, 16px);
    }
    .premium-call-to-action {
        padding: 10px 25px;
        font-size: 14px;
    }
    .executive-heading::after {
        width: 60px;
        margin: 10px auto 0;
    }
    .executive-heading:hover::after {
        width: 90px;
    }
}


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

.elegant-stats-section {
    padding: clamp(60px, 10vh, 100px) 0;
    background: linear-gradient(to top, #f7f9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.prestige-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 25vw, 250px), 1fr));
    gap: clamp(20px, 3vw, 30px);
    justify-items: center;
    padding: clamp(20px, 4vw, 40px) 0;
}

.stat-card {
    background: #ffffff;
    border-radius: 15px;
    padding: clamp(20px, 3vw, 30px);
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 31, 63, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: cardRise 1s ease-out forwards;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}

.stat-card:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.8s;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #001f3f, #ffd700);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-figure {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 800;
    color: #001f3f;
    margin: 0 0 10px 0;
    line-height: 1.2;
    position: relative;
}

.stat-figure::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #ffd700;
    margin: 10px auto 0;
    transition: width 0.4s ease;
}

.stat-card:hover .stat-figure::after {
    width: 80px;
}

.stat-description {
    font-size: clamp(14px, 2vw, 16px);
    color: #333333;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .prestige-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .stat-card {
        max-width: 100%;
        padding: 20px;
    }
    .stat-figure {
        font-size: clamp(28px, 5vw, 36px);
    }
    .stat-description {
        font-size: clamp(13px, 2vw, 15px);
    }
}

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


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

.refined-info-section {
    padding: clamp(70px, 12vh, 130px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f2f6fa 100%);
    position: relative;
    overflow: hidden;
}

.executive-content-wrapper {
    max-width: 100%;
    text-align: center;
    animation: smoothEntry 1.2s ease-out forwards;
}

.prestige-title {
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.2;
}

.prestige-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #ffd700, #d4af37);
    opacity: 0;
    transition: opacity 0.5s ease, width 0.5s ease;
}

.prestige-title:hover::before {
    opacity: 1;
    width: 100px;
}

.sophisticated-text-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: textFadeUp 1.3s ease-out 0.3s forwards;
}

.elegant-description {
    font-size: clamp(16px, 2vw, 18px);
    color: #333333;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
}

.highlight-brand {
    font-weight: 700;
    color: #004080;
    position: relative;
    padding-bottom: 3px;
}

.highlight-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.4s ease;
}

.highlight-brand:hover::after {
    width: 100%;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .prestige-title {
        font-size: clamp(24px, 6vw, 36px);
    }
    .elegant-description {
        font-size: clamp(14px, 2.5vw, 16px);
    }
    .prestige-title::before {
        width: 50px;
    }
    .prestige-title:hover::before {
        width: 80px;
    }
}

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





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

.prime-service-display {
    padding: clamp(80px, 12vh, 140px) 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.executive-service-title {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 800;
    color: #001f3f;
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
    position: relative;
    opacity: 0;
    transform: translateY(-30px);
    animation: titleSlideIn 1s ease-out forwards;
}

.executive-service-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #ffd700, #d4af37);
    margin: 15px auto 0;
    transition: width 0.5s ease;
}

.executive-service-title:hover::after {
    width: 150px;
}

.sophisticated-service-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 30vw, 300px), 1fr));
    gap: clamp(25px, 4vw, 35px);
    justify-items: center;
}

.elite-service-item {
    background: #ffffff;
    border-radius: 20px;
    padding: clamp(25px, 4vw, 35px);
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 31, 63, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: scale(0.95);
    animation: itemFadeIn 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
    max-width: 350px;
    width: 100%;
}

.elite-service-item:nth-child(1) { animation-delay: 0.2s; }
.elite-service-item:nth-child(2) { animation-delay: 0.4s; }
.elite-service-item:nth-child(3) { animation-delay: 0.6s; }

.elite-service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 31, 63, 0.2);
}

.elite-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.15), transparent);
    transition: left 0.6s ease;
}

.elite-service-item:hover::before {
    left: 100%;
}

.service-icon {
    color: #004080;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.elite-service-item:hover .service-icon {
    transform: rotate(360deg);
    color: #ffd700;
}

.service-title {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 15px;
}

.service-text {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #333333;
    line-height: 1.6;
    font-weight: 400;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .prime-service-display {
        padding: clamp(50px, 10vh, 80px) 0;
    }
    .executive-service-title {
        font-size: clamp(26px, 6vw, 36px);
    }
    .sophisticated-service-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .elite-service-item {
        max-width: 100%;
    }
    .service-title {
        font-size: clamp(18px, 2.5vw, 22px);
    }
    .service-text {
        font-size: clamp(13px, 2vw, 15px);
    }
}

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

.luxury-offering-section {
    padding: clamp(80px, 12vh, 140px) 0;
    background: linear-gradient(to bottom, #f7f9fc 0%, #e8edf3 100%);
    position: relative;
    overflow: hidden;
}

.distinguished-offer-title {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 800;
    color: #001f3f;
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
    position: relative;
    opacity: 0;
    transform: translateY(-30px);
    animation: titleReveal 1s ease-out forwards;
}

.distinguished-offer-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ffd700, #d4af37);
    transition: width 0.5s ease;
}

.distinguished-offer-title:hover::before {
    width: 120px;
}

.prestige-offer-collection {
    display: grid;
    grid-template-columns: repeat(2, minmax(clamp(280px, 30vw, 320px), 1fr));
    gap: clamp(25px, 4vw, 35px);
    justify-items: center;
}

@media (max-width: 768px) {
    .prestige-offer-collection {
        grid-template-columns: 1fr;
    }
}

.elite-offer-panel {
    background: #ffffff;
    border-radius: 15px;
    padding: clamp(25px, 4vw, 35px);
    box-shadow: 0 6px 20px rgba(0, 31, 63, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: panelFadeIn 0.8s ease-out forwards;
    max-width: 600px;
    width: 100%;
}

.elite-offer-panel:nth-child(1) { animation-delay: 0.2s; }
.elite-offer-panel:nth-child(2) { animation-delay: 0.4s; }
.elite-offer-panel:nth-child(3) { animation-delay: 0.6s; }
.elite-offer-panel:nth-child(4) { animation-delay: 0.8s; }

.elite-offer-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.2);
}

.elite-offer-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #001f3f, #ffd700);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.elite-offer-panel:hover::after {
    opacity: 1;
}

.offer-heading {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 15px;
}

.offer-description {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #333333;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.refined-action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
    background: linear-gradient(135deg, #001f3f 0%, #004080 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.refined-action-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 31, 63, 0.3);
}

.refined-action-link::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.6s ease, transform 0.6s ease;
    transform: scale(0);
}

.refined-action-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.action-icon {
    width: 20px;
    height: 20px;
    transform: rotate(-90deg);
    transition: transform 0.4s ease;
}

.refined-action-link:hover .action-icon {
    transform: rotate(-90deg) translateX(5px);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .luxury-offering-section {
        padding: clamp(50px, 10vh, 80px) 0;
    }
    .distinguished-offer-title {
        font-size: clamp(26px, 6vw, 36px);
    }
    .elite-offer-panel {
        max-width: 100%;
    }
    .offer-heading {
        font-size: clamp(18px, 2.5vw, 22px);
    }
    .offer-description {
        font-size: clamp(13px, 2vw, 15px);
    }
    .refined-action-link {
        padding: 10px 20px;
        font-size: 14px;
    }
}

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

.noble-commitment-section {
    padding: clamp(70px, 12vh, 120px) 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f5f8fc 100%);
    position: relative;
    overflow: hidden;
}

.refined-commitment-content {
    max-width: 100%;
    text-align: center;
    animation: gracefulEntry 1.2s ease-out forwards;
}

.majestic-commitment-title {
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.2;
}

.majestic-commitment-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #ffd700, #d4af37);
    opacity: 0;
    transition: opacity 0.5s ease, width 0.5s ease;
}

.majestic-commitment-title:hover::after {
    opacity: 1;
    width: 110px;
}

.elegant-commitment-text {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(25px);
    animation: textSlideUp 1.3s ease-out 0.3s forwards;
}

.distinguished-paragraph {
    font-size: clamp(16px, 2vw, 18px);
    color: #333333;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
}

.highlight-brand {
    font-weight: 700;
    color: #004080;
    position: relative;
    padding-bottom: 4px;
}

.highlight-brand::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.4s ease;
}

.highlight-brand:hover::before {
    width: 100%;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .noble-commitment-section {
        padding: clamp(50px, 10vh, 80px) 0;
    }
    .majestic-commitment-title {
        font-size: clamp(24px, 6vw, 36px);
    }
    .distinguished-paragraph {
        font-size: clamp(14px, 2.5vw, 16px);
    }
    .majestic-commitment-title::after {
        width: 50px;
    }
    .majestic-commitment-title:hover::after {
        width: 80px;
    }
}

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




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

.executive-contact-section {
    padding: clamp(80px, 12vh, 140px) 0;
    background: linear-gradient(to bottom, #f7f9fc 0%, #e8edf3 100%);
    position: relative;
    overflow: hidden;
}

.prestige-contact-layout {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 5vw, 50px);
    align-items: center;
}

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

.refined-text-content {
    max-width: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: contentFadeIn 1s ease-out forwards;
}

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

.noble-contact-heading {
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

@media (min-width: 992px) {
    .noble-contact-heading {
        text-align: left;
    }
}

.noble-contact-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ffd700, #d4af37);
    margin: 15px auto 0;
    transition: width 0.5s ease;
}

@media (min-width: 992px) {
    .noble-contact-heading::after {
        margin: 15px 0 0;
    }
}

.noble-contact-heading:hover::after {
    width: 120px;
}

.elegant-contact-subheading {
    font-size: clamp(16px, 2vw, 18px);
    color: #333333;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}

@media (min-width: 992px) {
    .elegant-contact-subheading {
        text-align: left;
    }
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateX(-20px);
    animation: itemSlideIn 0.8s ease-out forwards;
}

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

.info-icon {
    width: 24px;
    height: 24px;
    color: #004080;
    transition: transform 0.4s ease, color 0.4s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.2);
    color: #ffd700;
}

.info-title {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 600;
    color: #001f3f;
    margin: 0;
}

.info-text {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #333333;
    margin: 5px 0 0 0;
}

.info-text a {
    color: #004080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #ffd700;
}

.compliance-info {
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: itemSlideIn 0.8s ease-out 0.8s forwards;
}

.sophisticated-form-container {
    max-width: 100%;
    background: #ffffff;
    border-radius: 15px;
    padding: clamp(25px, 4vw, 35px);
    box-shadow: 0 6px 20px rgba(0, 31, 63, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: formFadeIn 1s ease-out 0.3s forwards;
}

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

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    color: #001f3f;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 1px solid #d0d4d8;
    border-radius: 8px;
    font-size: clamp(14px, 1.6vw, 16px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #004080;
    box-shadow: 0 0 0 3px rgba(0, 64, 128, 0.2);
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-notice {
    font-size: clamp(12px, 1.4vw, 14px);
    color: #333333;
    text-align: center;
    margin-bottom: 10px;
}

.form-policy-link {
    color: #004080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-policy-link:hover {
    color: #ffd700;
}

.form-submit-button {
    max-width: 200px;
    margin: 0 auto;
    padding: 12px 0;
    background: linear-gradient(135deg, #001f3f 0%, #004080 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.form-submit-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 31, 63, 0.3);
}

.form-submit-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.6s ease, transform 0.6s ease;
    transform: scale(0);
}

.form-submit-button:hover::before {
    opacity: 1;
    transform: scale(1);
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .executive-contact-section {
        padding: clamp(50px, 10vh, 80px) 0;
    }
    .noble-contact-heading {
        font-size: clamp(24px, 6vw, 36px);
    }
    .elegant-contact-subheading {
        font-size: clamp(14px, 2.5vw, 16px);
    }
    .info-title {
        font-size: clamp(16px, 1.8vw, 18px);
    }
    .info-text {
        font-size: clamp(13px, 1.6vw, 15px);
    }
    .sophisticated-form-container {
        padding: 20px;
    }
    .form-label {
        font-size: 14px;
    }
    .form-input,
    .form-textarea {
        font-size: 14px;
    }
    .form-notice {
        font-size: 12px;
    }
    .form-submit-button {
        font-size: 14px;
        max-width: 180px;
    }
}

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

.prestige-footer-section {
    padding: clamp(60px, 10vh, 100px) 0;
    background: linear-gradient(to bottom, #001f3f 0%, #003366 100%);
    position: relative;
    overflow: hidden;
}

.elegant-disclaimer-block {
    max-width: 1000px;
    margin: 0 auto clamp(30px, 5vw, 40px) auto;
    opacity: 0;
    transform: translateY(20px);
    animation: disclaimerFadeIn 1s ease-out forwards;
}

.refined-disclaimer-text {
    font-size: clamp(13px, 1.6vw, 15px);
    color: #d0d4d8;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
}

.refined-disclaimer-text strong {
    color: #ffffff;
    font-weight: 600;
}

.refined-disclaimer-text a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.refined-disclaimer-text a:hover {
    color: #d4af37;
}

.noble-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(20px, 3vw, 30px);
    opacity: 0;
    transform: translateY(20px);
    animation: contentFadeIn 1s ease-out 0.3s forwards;
}

@media (max-width: 768px) {
    .noble-footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

.distinguished-copyright {
    font-size: clamp(13px, 1.6vw, 15px);
    color: #d0d4d8;
    font-weight: 400;
}

.sophisticated-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(15px, 2vw, 25px);
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    opacity: 0;
    transform: translateY(15px);
    animation: navItemFadeIn 0.8s ease-out forwards;
}

.nav-item:nth-child(1) { animation-delay: 0.4s; }
.nav-item:nth-child(2) { animation-delay: 0.5s; }
.nav-item:nth-child(3) { animation-delay: 0.6s; }
.nav-item:nth-child(4) { animation-delay: 0.7s; }

.elite-nav-link {
    font-size: clamp(13px, 1.6vw, 15px);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.elite-nav-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.elite-nav-link:hover {
    color: #ffd700;
}

.elite-nav-link:hover::before {
    width: 100%;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .prestige-footer-section {
        padding: clamp(40px, 8vh, 60px) 0;
    }
    .refined-disclaimer-text {
        font-size: clamp(12px, 1.5vw, 14px);
    }
    .distinguished-copyright {
        font-size: clamp(12px, 1.5vw, 14px);
        text-align: center;
    }
    .sophisticated-nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .elite-nav-link {
        font-size: clamp(12px, 1.5vw, 14px);
    }
}

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