/* ================= NAV ================= */

nav{
  position:relative;
  z-index:10;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 8%;
  background:#0f1012;
}

nav a{
  margin-left:18px;
  font-family:'Inter',sans-serif;
  font-size:.82rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#a9a9a9;
}

nav a.active,
nav a:hover{
  color:var(--gold);
}

/* ================= BUTTON ================= */

.btn{
  display:inline-block;
  margin-top:22px;
  padding:14px 30px;
  border-radius:40px;
  background:var(--gold);
  color:#0f1012;
  font-weight:600;
  font-size:.9rem;
  letter-spacing:.08em;
  text-transform:uppercase;

  /* REMOVE ALL EFFECTS */
  border:none;
  box-shadow:none;
  outline:none;
}

/* ================= SOCIAL ICONS (VISIBLE FIX) ================= */

.socials{
  position:absolute;
  right:4%;
  bottom:18%;
  display:flex;
  flex-direction:column;
  gap:14px;

  z-index:6; /* ABOVE rays & bull */
}

.socials a{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;

  border:none;
  box-shadow:none;
}

/* Brand colors only */
.socials a.telegram{ background:#229ED9; }
.socials a.whatsapp{ background:#25D366; }
.socials a.instagram{
  background:linear-gradient(45deg,#F58529,#DD2A7B,#8134AF);
}
.socials a.youtube{ background:#FF2C2C; }

.socials svg,
.socials i{
  width:20px;
  height:20px;
  color:#fff;
  fill:#fff;
}

/* ================= FOOTER ================= */

footer{
  padding:30px 8%;
  background:#0f1012;
  color:#8c8c8c;
  font-size:.8rem;
  text-align:center;

  border:none;
  box-shadow:none;
}
/* ======================================================
   🔐 PREMIUM REQUEST ACCESS BUTTON (TOP NAV)
   ====================================================== */

.access-btn{
  margin-right: 28px;

  padding: 8px 18px;

  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--gold);
  text-decoration: none;

  border: 1px solid rgba(214,177,90,.55);
  border-radius: 999px;

  background: transparent;

  transition:
    background .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}

/* Premium hover */
.access-btn:hover{
  background: rgba(214,177,90,.08);
  box-shadow:
    0 0 0 1px rgba(214,177,90,.35),
    0 8px 20px rgba(0,0,0,.45);
  transform: translateY(-1px);
}
/* ======================================================
   🔗 NAV ACTIVE UNDERLINE (OLD PREMIUM STYLE)
   ====================================================== */

nav a{
  position: relative;
}

nav a.active::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 100%;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    var(--gold),
    transparent
  );

  opacity: 0.9;
}

/* Prevent underline on hover */
nav a:hover::after{
  content: none;
}


/* ======================================================
   ✨ PREMIUM SOCIAL ICON GLOW
   ====================================================== */

/* Base icon state (clean & matte) */
.socials a{
  position: relative;
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    filter .3s ease;
}

/* Premium hover glow */
.socials a:hover{
  transform: translateY(-2px);

  /* Soft layered glow */
  box-shadow:
    0 0 8px rgba(214,177,90,.35),
    0 0 18px rgba(214,177,90,.25),
    0 0 32px rgba(214,177,90,.18);
}

/* Icon itself – gentle highlight */
.socials a:hover svg,
.socials a:hover i{
  filter: drop-shadow(0 0 12px rgba(285, 255, 180, 10.75));
}

/* ======================================================
  ✨ title.underline
   ====================================================== */

.page-title {
  position: relative;
  display: inline-block;
padding-bottom: 18px;
}

.page-title.underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
}


/* ======================================================
  ✨ HIGHLIGHT TEXT
   ====================================================== */


.highlight{
  color: var(--gold);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

/* Elegant underline, not block */
.highlight::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background: rgba(214,177,90,.6);
}

/* ======================================================
  ✨ Dynamic underline (Features, Sections)
   ====================================================== */

 
.page-title.underline-dynamic{
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.page-title.underline-dynamic::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;           /* 🔥 THIS makes it dynamic */
  height: 2px;

  background: linear-gradient(
    to right,
    var(--gold),
    rgba(214,177,90,.35)
  );
}

