@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://qualitorvane.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://qualitorvane.com/fonts/Gilroy-Regular.woff2") format("woff2");
}
:root {
  --light-color: #ffffff;
  --dark-color: #000000;
  --primary-color: #123453;
  --accent-color: #bc8c62;
  --warning-color: red;
}

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

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

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

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

html {
  scroll-behavior: smooth;
}

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

body.lock {
  overflow: hidden;
}

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

a {
  transition: all 0.3s ease;
}

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

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


/* 1 */
.notify-section {
  background: linear-gradient(to bottom, #f5f5f5 0%, #e0e0e0 100%);
  border-top: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37;
  padding: 5px 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
  transition: background 0.5s ease;
}

.notify-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 200%;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  transform: translateX(-50%);
  opacity: 0.7;
  z-index: 0;
}

.disclosure-wrapper {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.95);
  animation: elegantFadeIn 1s ease-out 0.2s forwards;
}

.disclosure-title {
  font-family: 'Georgia', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  color: #333333;
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.disclosure-title::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 50px;
  height: 2px;
  background: #d4af37;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.disclosure-wrapper:hover .disclosure-title::before {
  width: 100px;
}

.disclosure-text {
  color: #555555;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.7;
  text-align: justify;
  font-weight: 400;
}

.disclosure-text .highlight {
  font-style: normal;
  font-weight: 700;
  color: #d4af37;
  display: inline-block;
  position: relative;
  transition: transform 0.3s ease;
}

.disclosure-text .highlight::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 2px;
  background: #d4af37;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease, left 0.3s ease;
}

.disclosure-wrapper:hover .disclosure-text .highlight::after {
  opacity: 1;
  left: -10px;
}

.disclosure-text a {
  color: #333333;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

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

.disclosure-text a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

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

.notify-section:hover {
  background: linear-gradient(to bottom, #f0f0f0 0%, #d0d0d0 100%);
}

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

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

  .disclosure-title {
    font-size: clamp(16px, 2vw, 20px);
  }

  .disclosure-text {
    font-size: clamp(12px, 1.6vw, 14px);
    text-align: left;
  }
}

@media (max-width: 480px) {
  .notify-section {
    padding: 20px 0;
  }

  .disclosure-title::before {
    width: 40px;
  }

  .disclosure-wrapper:hover .disclosure-title::before {
    width: 80px;
  }
}

/* header */

.header-section {
  background: linear-gradient(to right, #0f172a 0%, #1e293b 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.5s ease;
}

.header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
  opacity: 0.8;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: clamp(20px, 4vw, 30px);
  opacity: 0;
  transform: translateY(-10px);
  animation: subtleFadeIn 0.8s ease-out forwards;
}

.logo-link {
  display: block;
  max-width: 60px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

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

.desktop-nav {
  display: none;
}

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

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

.nav-item {
  position: relative;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

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

.nav-link:hover {
  color: #c5a47e;
  transform: translateY(-2px);
}

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

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

.start-button {
  padding: 12px 25px;
  background: linear-gradient(90deg, #c5a47e 0%, #a07a2a 100%);
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-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;
}

.start-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(197, 164, 126, 0.4);
}

.start-button:hover::before {
  opacity: 1;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.toggle-line {
  width: 100%;
  height: 3px;
  background: #ffffff;
  transition: all 0.4s ease;
  border-radius: 2px;
}

.menu-toggle.active .toggle-line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.menu-toggle.active .toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .toggle-line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

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

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
  box-shadow: -10px 0 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  padding: 60px 20px 20px;
  transition: right 0.5s ease;
  display: none;
  flex-direction: column;
}

@media (max-width: 1199px) {
  .mobile-nav {
    display: flex;
  }
}

.mobile-nav.active {
  right: 0;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-close:hover {
  transform: rotate(90deg);
  color: #c5a47e;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-nav .nav-link {
  font-size: clamp(18px, 3.5vw, 22px);
  display: block;
  text-align: center;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-wrapper {
    gap: 15px;
  }

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

  .logo-link {
    max-width: 50px;
  }

  .mobile-nav {
    width: 100%;
    max-width: none;
  }
}

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

.hero-section {
  padding: clamp(100px, 18vh, 200px) 0;
  position: relative;
  color: #f4f4f4;
  background-image: url(../img/hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.4) 100%);
  z-index: -1;
  opacity: 0.95;
  transition: opacity 0.6s ease-in-out;
}

.hero-section:hover::after {
  opacity: 1;
}

.executive-banner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(15, 23, 42, 0.3);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: elevateIn 1.2s ease-out 0.3s forwards;
}

.executive-banner::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #c5a47e, #e0c08f);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.executive-banner:hover::before {
  width: 120px;
}

.banner-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 60px);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.4s ease;
}

.banner-headline:hover {
  color: #e0c08f;
}

.banner-narrative {
  font-size: clamp(17px, 2.6vw, 21px);
  margin-bottom: 35px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.banner-narrative:hover {
  opacity: 1;
}

.initiate-button {
  display: inline-block;
  padding: 14px 32px;
  color: #0f172a;
  background: linear-gradient(135deg, #c5a47e 0%, #a07a2a 100%);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 12px rgba(197, 164, 126, 0.3);
}

.initiate-button::after {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: bottom 0.6s ease;
  z-index: 0;
}

.initiate-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(197, 164, 126, 0.5);
}

.initiate-button:hover::after {
  bottom: 0;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .executive-banner {
    padding: 30px 20px;
  }

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

  .banner-narrative {
    font-size: clamp(15px, 3.2vw, 19px);
  }

  .initiate-button {
    padding: 12px 28px;
    font-size: clamp(13px, 2.2vw, 15px);
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: clamp(80px, 15vh, 150px) 0;
  }

  .executive-banner::before {
    width: 60px;
  }

  .executive-banner:hover::before {
    width: 90px;
  }
}

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

.rating-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: clamp(20px, 5vw, 40px) 0;
    max-width: 960px;
    border-radius: 30px;
    margin: -36px auto 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rating-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
    .rating-section {
        margin-top: 0;
    }
}

.rating-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(10px, 3vw, 20px);
}

@media screen and (max-width: 768px) {
    .rating-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        gap: 15px;
    }
}

@media screen and (max-width: 360px) {
    .rating-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.rating-item {
    background: #ffffff;
    padding: clamp(12px, 3vw, 20px);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.rating-item:nth-child(1) {
    animation-delay: 0.1s;
}

.rating-item:nth-child(2) {
    animation-delay: 0.2s;
}

.rating-item:nth-child(3) {
    animation-delay: 0.3s;
}

.rating-item:nth-child(4) {
    animation-delay: 0.4s;
}

.rating-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 1200px) {
    .rating-item {
        min-height: 110px;
        max-width: 170px;
        width: 100%;
    }
}

@media screen and (max-width: 360px) {
    .rating-item {
        min-height: 100px;
        max-width: 100%;
    }
}

.rating-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating-header img {
    height: clamp(22px, 3vw, 26px);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.rating-header:hover img {
    transform: scale(1.1);
}

.rating-header span {
    font-size: clamp(13px, 1.8vw, 15px);
    font-weight: 500;
    color: #2a2a4e;
}

@media screen and (max-width: 1200px) {
    .rating-header span {
        font-size: 13px;
    }
}

@media screen and (max-width: 360px) {
    .rating-header span {
        font-size: 12px;
    }
}

.rating-body {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-body span {
    margin-right: 8px;
    font-weight: 700;
    font-size: clamp(18px, 3vw, 24px);
    color: #2a2a4e;
}

@media screen and (max-width: 1200px) {
    .rating-body span {
        font-size: 18px;
    }
}

@media screen and (max-width: 360px) {
    .rating-body span {
        font-size: 16px;
    }
}

.rating-body svg {
    color: #ffd700;
    width: clamp(14px, 2vw, 18px);
    height: clamp(14px, 2vw, 18px);
    transition: transform 0.3s ease, color 0.3s ease;
}

.rating-body svg:hover {
    transform: scale(1.2);
    color: #ffac00;
}

.rating-item:nth-child(1) svg {
    color: #2962ff;
}

.rating-item:nth-child(4) svg {
    color: #01b57a;
}

@media screen and (max-width: 360px) {
    .rating-body svg {
        width: 14px;
        height: 14px;
    }
}

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

/* Specific adjustments for 320-360px */
@media screen and (min-width: 320px) and (max-width: 360px) {
    .rating-section {
        padding: 15px 0;
    }
    .rating-grid {
        gap: 8px;
    }
    .rating-item {
        padding: 10px;
        min-height: 90px;
    }
    .rating-header {
        gap: 6px;
        margin-bottom: 8px;
    }
    .rating-header img {
        height: 20px;
    }
    .rating-body {
        gap: 3px;
    }
}

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

.about-section {
  padding: clamp(60px, 12vh, 100px) 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
  color: #f4f4f4;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(197, 164, 126, 0.15) 0%, transparent 70%);
  z-index: 0;
  opacity: 0.8;
}

.prestige-overview {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.overview-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5.5vw, 44px);
  font-weight: 800;
  margin-bottom: 50px;
  letter-spacing: 1.5px;
  position: relative;
  opacity: 0;
  transform: translateY(-30px);
  animation: gracefulDescend 1s ease-out forwards;
}

.overview-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, transparent, #c5a47e, transparent);
  transition: width 0.5s ease;
}

.prestige-overview:hover .overview-title::after {
  width: 200px;
}

.prestige-collection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(25px, 4vw, 40px);
  margin-bottom: 50px;
}

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

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

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

.feature-card {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 16px;
  padding: clamp(20px, 2.5vw, 25px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
  animation: cardReveal 0.8s ease-out forwards;
  backdrop-filter: blur(5px);
}

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

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(197, 164, 126, 0.3);
}

.feature-visual {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(197, 164, 126, 0.1) 100%);
  transition: background 0.4s ease;
  z-index: 1;
}

.feature-card:hover .feature-visual::before {
  background: linear-gradient(to bottom, transparent 50%, rgba(197, 164, 126, 0.2) 100%);
}

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

.feature-card:hover .visual-media {
  transform: scale(1.08);
}

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

.feature-caption {
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 700;
  margin-bottom: 15px;
  color: #c5a47e;
  transition: color 0.4s ease;
}

.feature-card:hover .feature-caption {
  color: #e0c08f;
}

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

.feature-summary {
  font-size: clamp(15px, 2.1vw, 17px);
  line-height: 1.7;
  color: #d1d5db;
  font-weight: 400;
}

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

.engage-link {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(135deg, #c5a47e 0%, #a07a2a 100%);
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: cardReveal 0.8s ease-out 1s forwards;
}

.engage-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.engage-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(197, 164, 126, 0.5);
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }

  .overview-title {
    font-size: clamp(28px, 7vw, 36px);
    margin-bottom: 40px;
  }

  .feature-card {
    padding: 18px;
  }

  .engage-link {
    padding: 12px 25px;
    font-size: clamp(13px, 2.2vw, 15px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .about-section {
    padding: 40px 0;
  }

  .overview-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .prestige-collection {
    margin-bottom: 30px;
  }

  .feature-card {
    padding: 15px;
  }

  .engage-link {
    padding: 10px 20px;
    font-size: 13px;
  }
}


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

.service-section {
  padding: clamp(70px, 14vh, 120px) 0;
  background: linear-gradient(180deg, #f9fafb 0%, #e5e7eb 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.05);
  color: #374151;
}

.service-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, #9ca3af, transparent);
  opacity: 0.5;
}

.professional-arsenal {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.arsenal-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(-40px);
  animation: headerReveal 1s ease-out 0.2s forwards;
}

.header-main {
  font-family: 'Georgia', serif;
  font-size: clamp(34px, 6vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  position: relative;
  color: #1f2937;
}

.header-main::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #6b7280;
  transition: width 0.5s ease;
  border-radius: 2px;
}

.arsenal-header:hover .header-main::before {
  width: 120px;
}

.header-overview {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 300;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  color: #4b5563;
  transition: color 0.4s ease;
}

.arsenal-header:hover .header-overview {
  color: #374151;
}

.arsenal-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(30px, 4.5vw, 45px);
  margin-bottom: 70px;
}

@media (max-width: 1200px) {
  .arsenal-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .arsenal-showcase {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

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

.showcase-entry {
  background: #ffffff;
  border-radius: 14px;
  padding: clamp(30px, 4vw, 40px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: scale(0.92);
  animation: entryEmerge 0.9s ease-out forwards;
}

.showcase-entry:nth-child(1) { animation-delay: 0.3s; }
.showcase-entry:nth-child(2) { animation-delay: 0.45s; }
.showcase-entry:nth-child(3) { animation-delay: 0.6s; }
.showcase-entry:nth-child(4) { animation-delay: 0.75s; }

.showcase-entry:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 35px rgba(107, 114, 128, 0.15);
}

.entry-symbol {
  margin-bottom: 25px;
  color: #6b7280;
  transition: color 0.4s ease, transform 0.4s ease;
}

.showcase-entry:hover .entry-symbol {
  color: #4b5563;
  transform: rotate(5deg) scale(1.15);
}

.entry-symbol svg {
  width: 45px;
  height: 45px;
}

.entry-title {
  font-size: clamp(23px, 3vw, 27px);
  font-weight: 600;
  margin-bottom: 18px;
  color: #1f2937;
  transition: color 0.4s ease;
}

.showcase-entry:hover .entry-title {
  color: #111827;
}

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

.entry-detail {
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.8;
  color: #4b5563;
}

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

.arsenal-spotlight {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4vw, 40px);
  background: #ffffff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(50px);
  animation: spotlightSlide 1s ease-out 0.9s forwards;
}

@media (max-width: 768px) {
  .arsenal-spotlight {
    flex-direction: column;
    gap: 25px;
    padding: 30px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .arsenal-spotlight {
    padding: 20px;
    gap: 20px;
  }
}

.spotlight-media {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.spotlight-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107, 114, 128, 0.1) 0%, transparent 50%);
  transition: background 0.5s ease;
}

.arsenal-spotlight:hover .spotlight-media::after {
  background: linear-gradient(to top, rgba(107, 114, 128, 0.2) 0%, transparent 30%);
}

.media-content {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 10px;
}

.arsenal-spotlight:hover .media-content {
  transform: scale(1.06);
}

.spotlight-narrative {
  flex: 1;
}

.narrative-lead {
  font-size: clamp(30px, 4.5vw, 40px);
  font-weight: 700;
  margin-bottom: 25px;
  color: #1f2937;
}

.narrative-lead em {
  font-style: normal;
  color: #6b7280;
  display: block;
  font-size: 0.9em;
}

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

.narrative-body {
  font-size: clamp(17px, 2.4vw, 19px);
  line-height: 1.7;
  color: #4b5563;
  max-width: 450px;
}

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

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-section {
    padding: 60px 0;
  }

  .arsenal-header {
    margin-bottom: 50px;
  }

  .header-main {
    font-size: clamp(30px, 7.5vw, 40px);
  }

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

@media (min-width: 320px) and (max-width: 360px) {
  .service-section {
    padding: 50px 0;
  }

  .header-main {
    font-size: 28px;
  }

  .header-overview {
    font-size: 15px;
  }

  .arsenal-showcase {
    margin-bottom: 40px;
  }

  .showcase-entry {
    padding: 25px;
  }
}

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

.help-section {
  padding: clamp(60px, 12vh, 100px) 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.03);
}

.help-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.02) 10px, rgba(212, 175, 55, 0.02) 20px);
  opacity: 0.5;
  z-index: 0;
}

.novice-resources {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.resources-caption {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5.5vw, 42px);
  font-weight: 700;
  margin-bottom: 25px;
  color: #1a202c;
  letter-spacing: 0.8px;
  position: relative;
  opacity: 0;
  transform: translateY(-25px);
  animation: captionAppear 0.9s ease-out forwards;
}

.resources-caption::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: #d4af37;
  transition: width 0.4s ease;
}

.novice-resources:hover .resources-caption::after {
  width: 150px;
}

.resources-intro {
  font-size: clamp(17px, 2.6vw, 21px);
  font-weight: 300;
  line-height: 1.7;
  color: #4a5568;
  max-width: 850px;
  margin: 0 auto 50px;
  opacity: 0;
  transform: translateY(-25px);
  animation: captionAppear 0.9s ease-out 0.2s forwards;
}

.resources-array {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(25px, 3.5vw, 35px);
  margin-bottom: 50px;
}

.resources-array .resource-module:nth-child(1),
.resources-array .resource-module:nth-child(2) {
  grid-column: span 1;
}

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

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

@media (min-width: 320px) and (max-width: 360px) {
  .resources-array {
    gap: 18px;
  }
}

.resource-module {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  padding: clamp(25px, 3.5vw, 30px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: moduleRise 1s ease-out forwards;
}

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

.resource-module:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

.module-header {
  font-size: clamp(21px, 2.7vw, 25px);
  font-weight: 600;
  margin-bottom: 15px;
  color: #2d3748;
  transition: color 0.4s ease;
}

.resource-module:hover .module-header {
  color: #d4af37;
}

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

.module-overview {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  color: #718096;
  flex-grow: 1;
  margin-bottom: 20px;
}

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

.module-engage {
  align-self: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, #d4af37 0%, #b08d2e 100%);
  color: #1a202c;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(14px, 1.9vw, 16px);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.module-engage:hover::before {
  width: 300px;
  height: 300px;
}

.module-engage:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.primary-engage {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #d4af37 0%, #b08d2e 100%);
  color: #1a202c;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 2.1vw, 17px);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: moduleRise 1s ease-out 1s forwards;
}

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

.primary-engage:hover::before {
  top: 0;
}

.primary-engage:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.4);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .help-section {
    padding: 50px 0;
  }

  .resources-caption {
    font-size: clamp(26px, 6.5vw, 36px);
    margin-bottom: 20px;
  }

  .resources-intro {
    font-size: clamp(15px, 3vw, 19px);
    margin-bottom: 40px;
  }

  .resource-module {
    padding: 20px;
  }

  .primary-engage {
    padding: 12px 28px;
    font-size: clamp(13px, 2vw, 15px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .help-section {
    padding: 40px 0;
  }

  .resources-caption {
    font-size: 24px;
  }

  .resources-intro {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .resources-array {
    margin-bottom: 30px;
  }

  .resource-module {
    padding: 18px;
  }

  .module-engage {
    padding: 10px 24px;
    font-size: 13px;
  }

  .primary-engage {
    padding: 10px 24px;
    font-size: 13px;
  }
}

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

.join-section {
  padding: clamp(40px, 8vh, 60px) 0;
  background: linear-gradient(to bottom, #1a202c 0%, #2d3748 100%);
  position: relative;
  overflow: hidden;
  border-top: 3px solid #c5a47e;
  border-bottom: 3px solid #c5a47e;
  color: #e2e8f0;
}

.join-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(197, 164, 126, 0.1) 0%, transparent 70%);
  opacity: 0.6;
  z-index: 0;
}

.enrollment-portal {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(45, 55, 72, 0.8);
  border-radius: 12px;
  padding: clamp(30px, 4vw, 40px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.96);
  animation: portalEmergence 1.2s ease-out 0.3s forwards;
}

.portal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5.5vw, 40px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #c5a47e;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.4s ease;
}

.enrollment-portal:hover .portal-title {
  color: #e0c08f;
}

.portal-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background: #c5a47e;
  transition: width 0.4s ease;
}

.enrollment-portal:hover .portal-title::after {
  width: 140px;
}

.portal-abstract {
  font-size: clamp(17px, 2.6vw, 21px);
  text-align: center;
  margin-bottom: 40px;
  color: #a0aec0;
  line-height: 1.6;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.enrollment-portal:hover .portal-abstract {
  opacity: 1;
}

.enrollment-form {
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 3.5vw, 35px);
}

.input-cluster {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(25px);
  animation: inputAscend 0.9s ease-out forwards;
}

.input-cluster:nth-child(1) { animation-delay: 0.6s; }
.input-cluster:nth-child(2) { animation-delay: 0.75s; }
.input-cluster:nth-child(3) { animation-delay: 0.9s; }
.input-cluster:nth-child(4) { animation-delay: 1.05s; }
.input-cluster:nth-child(5) { animation-delay: 1.2s; }

.input-descriptor {
  font-weight: 500;
  font-size: clamp(15px, 2vw, 17px);
  color: #c5a47e;
  transition: color 0.3s ease;
}

.input-cluster:hover .input-descriptor {
  color: #e0c08f;
}

.input-field,
.input-multiline {
  padding: 14px 18px;
  border: 1px solid rgba(197, 164, 126, 0.3);
  border-radius: 8px;
  background: rgba(26, 32, 44, 0.5);
  color: #e2e8f0;
  font-size: clamp(15px, 2vw, 17px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.input-field:focus,
.input-multiline:focus {
  border-color: #c5a47e;
  box-shadow: 0 0 0 4px rgba(197, 164, 126, 0.2);
  background: rgba(26, 32, 44, 0.7);
  outline: none;
}

.input-multiline {
  resize: vertical;
  min-height: 140px;
}

.compliance-note {
  font-size: clamp(13px, 1.7vw, 15px);
  color: #a0aec0;
  text-align: center;
  margin-bottom: 10px;
}

.compliance-note a {
  color: #c5a47e;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.compliance-note a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #c5a47e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.compliance-note a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.compliance-note a:hover {
  color: #e0c08f;
}

.dispatch-button {
  align-self: center;
  padding: 14px 35px;
  background: linear-gradient(135deg, #c5a47e 0%, #a07a2a 100%);
  color: #1a202c;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dispatch-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 200%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-30deg);
  transition: left 0.6s ease;
}

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

.dispatch-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(197, 164, 126, 0.4);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .join-section {
    padding: 30px 0;
  }

  .enrollment-portal {
    padding: 25px;
  }

  .portal-title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .portal-abstract {
    font-size: clamp(15px, 3vw, 19px);
    margin-bottom: 30px;
  }

  .enrollment-form {
    gap: 20px;
  }

  .input-field,
  .input-multiline {
    padding: 12px 16px;
    font-size: clamp(13px, 1.8vw, 15px);
  }

  .input-descriptor {
    font-size: clamp(13px, 1.8vw, 15px);
  }

  .compliance-note {
    font-size: clamp(11px, 1.5vw, 13px);
  }

  .dispatch-button {
    padding: 12px 30px;
    font-size: clamp(13px, 1.8vw, 15px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .enrollment-portal {
    padding: 20px;
  }

  .portal-title {
    font-size: 26px;
  }

  .portal-abstract {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .enrollment-form {
    gap: 18px;
  }

  .input-cluster {
    gap: 8px;
  }

  .input-field,
  .input-multiline {
    padding: 10px 14px;
    font-size: 13px;
  }

  .input-multiline {
    min-height: 120px;
  }

  .compliance-note {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .dispatch-button {
    padding: 10px 25px;
    font-size: 13px;
  }
}


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

.footer-section {
  padding: clamp(50px, 8vh, 80px) 0;
  background: linear-gradient(to bottom, #0a0f1a 0%, #1a202c 100%);
  position: relative;
  overflow: hidden;
  color: #d1d5db;
}

.footer-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top center, rgba(165, 142, 93, 0.1) 0%, transparent 60%);
  opacity: 0.7;
  z-index: 0;
}

.corporate-base {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(30px, 4vw, 40px);
  margin-bottom: 50px;
  padding: 20px;
  background: rgba(26, 32, 44, 0.6);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: panelRise 1s ease-out forwards;
}

@media (max-width: 768px) {
  .contact-panel {
    flex-direction: column;
    gap: 20px;
  }
}

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

.emblem-anchor:hover {
  transform: scale(1.1);
}

.emblem-visual {
  width: 100%;
  height: auto;
  filter: brightness(1.2);
}

.contact-reference {
  color: #a5b4fc;
  text-decoration: none;
  font-size: clamp(16px, 2.1vw, 18px);
  font-weight: 500;
  position: relative;
  transition: color 0.4s ease;
}

.contact-reference::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #a5b4fc;
  transition: width 0.4s ease;
}

.contact-reference:hover::after {
  width: 100%;
}

.contact-reference:hover {
  color: #c3dafe;
}

.advisory-notice {
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(26, 32, 44, 0.6);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: panelRise 1s ease-out 0.3s forwards;
}

.notice-segment {
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cbd5e1;
}

.notice-emphasis {
  color: #f3f4f6;
  font-weight: 700;
}

.notice-anchor {
  color: #a5b4fc;
  text-decoration: none;
  transition: color 0.4s ease;
}

.notice-anchor:hover {
  color: #c3dafe;
}

.credential-frame {
  padding: 25px;
  background: rgba(45, 55, 72, 0.8);
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(165, 142, 93, 0.2);
  transition: box-shadow 0.4s ease;
}

.advisory-notice:hover .credential-frame {
  box-shadow: inset 0 0 20px rgba(165, 142, 93, 0.3);
}

.credential-narrative {
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cbd5e1;
}

.credential-access {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #c5a47e 0%, #a07a2a 100%);
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  border-radius: 6px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.credential-access:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(197, 164, 126, 0.4);
}

.base-closure {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(165, 142, 93, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: panelRise 1s ease-out 0.6s forwards;
}

@media (max-width: 1200px) {
  .base-closure {
    flex-direction: column;
    gap: 20px;
  }
}

.rights-reservation {
  font-size: clamp(14px, 1.9vw, 16px);
  color: #94a3b8;
}

.closure-navigation {
  display: flex;
  gap: clamp(20px, 2.5vw, 25px);
}

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

.nav-option {
  color: #a5b4fc;
  text-decoration: none;
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 500;
  position: relative;
  transition: color 0.4s ease;
}

.nav-option::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #a5b4fc;
  transition: width 0.4s ease;
}

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

.nav-option:hover {
  color: #c3dafe;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0;
  }

  .contact-panel {
    padding: 15px;
    margin-bottom: 40px;
  }

  .advisory-notice {
    padding: 20px;
    margin-bottom: 40px;
  }

  .notice-segment {
    font-size: clamp(13px, 2vw, 15px);
  }

  .credential-frame {
    padding: 20px;
  }

  .credential-narrative {
    font-size: clamp(13px, 2vw, 15px);
    margin-bottom: 15px;
  }

  .credential-access {
    padding: 10px 24px;
    font-size: clamp(13px, 2vw, 15px);
  }

  .base-closure {
    padding-top: 20px;
  }

  .rights-reservation {
    font-size: clamp(13px, 2vw, 15px);
  }

  .nav-option {
    font-size: clamp(13px, 2vw, 15px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .footer-section {
    padding: 30px 0;
  }

  .contact-panel {
    gap: 15px;
    margin-bottom: 30px;
  }

  .advisory-notice {
    padding: 15px;
    margin-bottom: 30px;
  }

  .notice-segment {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .credential-frame {
    padding: 15px;
  }

  .credential-narrative {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .credential-access {
    padding: 8px 20px;
    font-size: 12px;
  }

  .base-closure {
    gap: 15px;
    padding-top: 15px;
  }

  .rights-reservation {
    font-size: 12px;
  }

  .closure-navigation {
    gap: 10px;
  }

  .nav-option {
    font-size: 12px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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