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

  :root {
      --purple: #4A2878;
      --purple-deep: #321B56;
      --purple-mid: #5E3490;
      --purple-light: #7B4DB5;
      --purple-pale: #F0EAF9;
      --gold: #F5B800;
      --gold-light: #FFD84D;
      --gold-dark: #C99200;
      --white: #FFFFFF;
      --cream: #FAF7FF;
      --gray: #6B7280;
      --gray-light: #F5F3FA;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Plus Jakarta Sans', sans-serif;
      --ease: cubic-bezier(0.4, 0, 0.2, 1);
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: var(--sans);
      color: #1A0E2E;
      background: var(--white);
      overflow-x: hidden;
  }

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

  img {
      max-width: 100%;
      display: block;
  }

  /* ── CURSOR ── */
  .cursor {
      position: fixed;
      width: 12px;
      height: 12px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width .25s, height .25s, opacity .25s;
      mix-blend-mode: multiply;
  }

  .cursor-ring {
      position: fixed;
      width: 36px;
      height: 36px;
      border: 1.5px solid var(--purple-light);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: all .12s var(--ease);
  }

  /* ── PARTICLES ── */
  #particles {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: .3;
  }

  /* ── NAVBAR ── */

  /* ─── NAVBAR ─── */
  nav {
      position: fixed;
      top: 12px;
      left: 12px;
      right: 12px;

      height: 74px;
      padding: 0 22px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      z-index: 1000;

      border-radius: 18px;

      background: rgba(50, 27, 86, .18);
      backdrop-filter: blur(14px);

      transition: .35s ease;
  }

  nav.scrolled {
      background: rgba(50, 27, 86, .96);
      box-shadow: 0 10px 40px rgba(0, 0, 0, .22);
  }

  /* LOGO */
  .nav-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 1002;
  }

  .nav-icon {
      width: 48px;
      height: 48px;
      object-fit: contain;
      animation: navIconSpin 8s linear infinite;
  }

  .logo-image {
      height: 58px;
      width: auto;
      object-fit: contain;
  }

  @keyframes navIconSpin {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  /* LINKS */
  .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
  }

  .nav-links a {
      position: relative;

      font-size: 12px;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;

      color: rgba(255, 255, 255, .78);

      transition: .3s ease;
  }

  .nav-links a:hover {
      color: var(--gold);
  }

  .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;

      width: 0;
      height: 1.5px;

      background: var(--gold);

      transition: .3s ease;
  }

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

  /* CTA */
  .nav-cta {
      position: relative;

      height: 42px;
      padding: 0 48px 0 22px;

      display: flex;
      align-items: center;
      justify-content: center;

      border-radius: 999px;

      background: linear-gradient(135deg,
              var(--gold),
              var(--gold-light));

      color: var(--purple-deep);

      font-size: 10px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;

      overflow: hidden;

      transition: .35s ease;
  }

  .nav-cta::after {
      content: "➜";

      position: absolute;
      right: 4px;
      top: 4px;

      width: 34px;
      height: 34px;

      border-radius: 50%;

      display: flex;
      align-items: center;
      justify-content: center;

      background: rgba(255, 255, 255, .28);

      font-size: 11px;
  }

  .nav-cta:hover {
      transform: translateY(-2px);
  }

  /* HAMBURGER */
  .hamburger {
      display: none;

      flex-direction: column;
      justify-content: center;
      gap: 5px;

      cursor: pointer;

      z-index: 1002;
  }

  .hamburger span {
      width: 24px;
      height: 2px;

      background: #fff;

      border-radius: 10px;

      transition: .3s ease;
  }

  /* ACTIVE ANIMATION */
  .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
  }


  .nav-icon:hover {
      transform: scale(1.08);
  }

  /* Main Logo */
  .logo-image {
      width: 170px;
      height: auto;
      object-fit: contain;

      filter:
          drop-shadow(0 0 8px rgba(245, 184, 0, .12));
  }

  /* Rotation */
  @keyframes navIconSpin {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  /* Responsive */
  @media (max-width:768px) {

      .nav-logo {
          gap: 8px;
      }

      .nav-icon {
          width: 42px;
          height: 42px;
      }

      .logo-image {
          width: 135px;
      }
  }

  @media (max-width:520px) {

      .nav-icon {
          width: 36px;
          height: 36px;
      }

      .logo-image {
          width: 115px;
      }
  }

  .logo-image {
      height: 65px;
      width: auto;
      object-fit: cover;
      padding: 3px;
      margin-top: 6px;

      animation: logoFloat 4s ease-in-out infinite;
      transition: transform .35s ease, box-shadow .35s ease;
  }

  @keyframes logoFloat {

      0%,
      100% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-4px);
      }
  }

  .nav-cta {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;

      height: 44px;
      padding: 0 50px 0 50px;

      background: linear-gradient(135deg,
              var(--gold),
              var(--gold-light));

      color: var(--purple-deep);
      text-decoration: none;
      text-transform: uppercase;

      font-size: 10px;
      font-weight: 700;
      letter-spacing: .07em;

      border-radius: 999px;
      overflow: hidden;

      transition:
          transform .45s cubic-bezier(.22, 1, .36, 1),
          box-shadow .45s cubic-bezier(.22, 1, .36, 1);

      box-shadow:
          0 5px 14px rgba(245, 184, 0, .16),
          0 0 14px rgba(245, 184, 0, .1);
  }

  .nav-cta span {
      position: relative;
      z-index: 2;

      transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  }

  .nav-cta::after {
      content: "➜";

      position: absolute;
      top: 3px;
      right: 3px;

      width: 38px;
      height: 38px;

      display: flex;
      align-items: center;
      justify-content: center;

      border-radius: 50%;

      background: rgba(255, 255, 255, .3);

      font-size: 13px;
      font-weight: 700;

      transition:
          right .55s cubic-bezier(.22, 1, .36, 1),
          transform .55s cubic-bezier(.22, 1, .36, 1),
          background .35s ease;
  }

  .nav-cta:hover {
      transform: translateY(-2px);

      box-shadow:
          0 10px 22px rgba(245, 184, 0, .22),
          0 0 18px rgba(245, 184, 0, .14);
  }

  .nav-cta:hover::after {
      right: calc(100% - 41px);

      transform: rotate(-45deg);

      background: rgba(255, 255, 255, .42);
  }

  .nav-cta:hover span {
      transform: translateX(8px);
  }

  nav {
      top: 15px;
      left: 16px;
      right: 16px;

      border-radius: 18px;
  }

  .nav-links-mobile {
      display: none;
  }

  /* Responsive */

  @media (max-width: 992px) {

      .hamburger {
          display: flex;
          flex-direction: column;
          justify-content: center;
          gap: 5px;
          cursor: pointer;
          z-index: 9999;
      }

      .nav-links {
          position: fixed;
          top: 86px;
          left: 12px;
          right: 12px;

          display: flex;
          /* keep flex */
          flex-direction: column;
          align-items: flex-start;
          gap: 20px;
          padding: 24px;

          background: rgba(50, 27, 86, 0.98);
          backdrop-filter: blur(14px);
          border-radius: 18px;
          z-index: 9998;

          /* Hidden state */
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
          transform: translateY(-20px);
          transition: all 0.35s ease;
      }

      .nav-links.active {
          opacity: 1;
          visibility: visible;
          pointer-events: auto;
          transform: translateY(0);
      }

      .nav-links a {
          width: 100%;
          font-size: 13px;
          padding-bottom: 8px;
      }

      .nav-cta {
          display: none;
      }

      .nav-links-desktop {
          display: none;
      }

      /* Mobile dropdown — hidden by default */
      .nav-links-mobile {
          position: fixed;
          top: 86px;
          left: 12px;
          right: 12px;

          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 20px;
          padding: 24px;

          background: rgba(50, 27, 86, 0.98);
          backdrop-filter: blur(14px);
          border-radius: 18px;
          z-index: 9998;

          opacity: 0;
          visibility: hidden;
          pointer-events: none;
          transform: translateY(-20px);
          transition: all 0.35s ease;
      }

      .nav-links-mobile.active {
          opacity: 1;
          visibility: visible;
          pointer-events: auto;
          transform: translateY(0);
      }
  }

  /* SMALL DEVICES */

  @media (max-width: 600px) {

      nav {
          height: 64px;
          padding: 0 14px;
      }

      .nav-links {
          top: 76px;
          left: 8px;
          right: 8px;
          padding: 20px 18px;
      }

      .nav-icon {
          width: 34px;
          height: 34px;
      }

      .logo-image {
          height: 38px;
          width: auto;
      }

      .hamburger span {
          width: 20px;
      }
  }

  /* EXTRA SMALL */

  @media (max-width: 380px) {

      .logo-image {
          height: 32px;
      }

      .nav-icon {
          width: 28px;
          height: 28px;
      }

      .hamburger span {
          width: 18px;
      }
  }
.contact-icon{
    width:58px;
    height:58px;

    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon img{
    width:100%;
    height:100%;

    object-fit:contain;

    transition:.35s ease;
}

.contact-card:hover .contact-icon img{
    transform:scale(1.08);
}

/* ── PAGE HERO ── */
.page-hero {
    min-height: 52vh;
    /* display: flex; */
    align-items: flex-end;
    padding: 130px 6% 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 55%, var(--purple-mid) 100%);
}

.page-hero-orb1 {
    position: absolute;
    top: -15%;
    right: -8%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 184, 0, .15) 0%, transparent 70%);
    animation: orbFloat 7s ease-in-out infinite;
}

.page-hero-orb2 {
    position: absolute;
    bottom: -30%;
    left: -12%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 77, 181, .35) 0%, transparent 70%);
    animation: orbFloat 9s ease-in-out infinite reverse;
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    /* background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px); */
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-35px) scale(1.06)
    }
}

@keyframes gridShift {
    to {
        background-position: 60px 60px
    }
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp .7s .3s ease forwards;
}

.page-hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 184, 0, .6)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(245, 184, 0, 0)
    }
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -.01em;
    opacity: 0;
    animation: fadeUp .8s .5s ease forwards;
}

.page-hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.page-hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, .6);
    line-height: 1.85;
    max-width: 580px;
    margin-top: 18px;
    opacity: 0;
    animation: fadeUp .8s .7s ease forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(28px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}
/* ─── FOOTER ─── */
footer {
  background: var(--purple-deep);
  padding: 80px 6% 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,184,0,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Logo */
.footer-nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-nav-icon {
  width: 46px; height: 46px;
  object-fit: contain;
  animation: navIconSpin 8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(245,184,0,.4));
  transition: transform .35s ease;
  flex-shrink: 0;
}
.footer-nav-icon:hover { transform: scale(1.08); }

.footer-logo-image {
  height: 52px; width: auto;
  object-fit: contain;
  animation: logoFloat 4s ease-in-out infinite;
}

/* Grid */
.footer-top {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Brand */
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  line-height: 1.85;
  max-width: 290px;
  margin-bottom: 24px;
}

.footer-offices {
  display:flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.footer-office {
  display: flex;
  align-items: center;
  gap: 12px;
  padding:12px;
border-radius:16px;
/* background:rgb(255,255,255,.05); */
}

.office-flag { font-size: 20px; }

.office-city {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  line-height: 1.2;
}

.office-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-top: 2px;
}

/* Socials */
/* Socials */
.footer-socials {
  display: flex;
  gap: 10px;
}

.f-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
   color: var(--gold);
  font-size: 12px; font-weight: 600;
  transition: all .3s;
}
.f-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,184,0,.1);
  transform: translateY(-3px);
}

/* Columns */
.footer-col h5 {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--cream);
  transition: color .3s, padding-left .3s;
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s, margin-right .3s;
  flex-shrink: 0;
}

.footer-col ul li a:hover {
  color: rgba(255,255,255,.85);
  padding-left: 0;
}

.footer-col ul li a:hover::before {
  width: 14px;
  margin-right: 8px;
}

/* ISO Badge */
.footer-cert {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(245,184,0,.08);
  border: 1px solid rgba(245,184,0,.15);
  border-radius: 10px;
}

.cert-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--purple-deep);
  flex-shrink: 0;
}

.cert-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}

.cert-sub {
  font-size: 10px;
  color: rgba(255,255,255,.3);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Bottom bar */
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center; /* center horizontally */
  text-align: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.2);
  margin: 0;
}

.footer-bottom a{
  color: var(--cream);
  text-decoration: none;
}

.footer-bottom a:hover{
  color: var(--gold);
}

/* ─── BACK TO TOP ─── */
.btt {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 400;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; color: var(--purple-deep);
  box-shadow: 0 8px 24px rgba(245,184,0,.4);
  opacity: 0; transform: translateY(20px);
  transition: all .35s var(--ease);
  border: none;
}
.btt.show { opacity: 1; transform: translateY(0); }
.btt:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(245,184,0,.5); }

/* ─── FOOTER RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 768px) {
  footer { padding: 60px 5% 0; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-brand p { max-width: 100%; }

  .footer-offices {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand { grid-column: auto; }

  .footer-offices { flex-direction: column; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bottom-links { gap: 16px; }
}

CSS

.contact-section{
padding:100px 8%;
background:#faf8fc;
}

.contact-header{
text-align:center;
max-width:800px;
margin:auto;
margin-bottom:70px;
}

.contact-tag{
display:inline-block;
padding:10px 18px;
border-radius:30px;
background:rgba(126,93,198,.08);
color:#b48b3c;
font-size:12px;
letter-spacing:2px;
text-transform:uppercase;
font-weight:600;
}

.contact-header h2{
font-size:56px;
margin:20px 0;
color:#fff;
font-family:'Cormorant Garamond',serif;
}

.contact-header em{
font-style:normal;
color:#b48b3c;
}

.contact-header p{
line-height:1.8;
color:rgba(255, 255, 255, .6)
}

.contact-grid{
display:grid;
grid-template-columns:repeat(3, minmax(300px, 1fr));
gap:30px;

max-width:1400px;   /* keeps cards grouped */
margin:60px auto 0; /* centers whole grid */
justify-content:center;
align-items:stretch;
}

.contact-card{
background:white;
padding:35px;
border-radius:28px;
box-shadow:0 10px 35px rgba(0,0,0,.07);

width:100%;
max-width:420px; /* prevents wide cards */

margin:auto; /* centers each card */
transition:.4s;
}

.contact-card:hover{
transform:translateY(-8px);
}

.contact-icon{
font-size:35px;
margin-bottom:20px;
}

.contact-card h3{
font-size:24px;
margin-bottom:8px;
color:#321b56;
}

.contact-card span{
display:block;
color:#b48b3c;
margin-bottom:18px;
font-size:13px;
text-transform:uppercase;
letter-spacing:1px;
}

.contact-card p{
color:#666;
line-height:1.9;
font-size:14px;
}
@media(max-width:992px){

.contact-grid{
grid-template-columns:repeat(2,minmax(300px,1fr));
max-width:800px;
}

}


/* Mobile */

@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
max-width:420px;
margin:40px auto 0;
}

}
/* Call box */

.call-box{
margin-top:60px;
background:linear-gradient(
135deg,
#321b56,
#5f3ba7
);

padding:40px;
border-radius:30px;
text-align:center;
color:white;
}

.call-title{
font-size:24px;
margin-bottom:25px;
font-family:'Cormorant Garamond',serif;
}

.call-items{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.call-items a{
padding:14px 22px;
border-radius:40px;
background:rgba(255,255,255,.12);
text-decoration:none;
color:white;
transition:.3s;
}

.call-items a:hover{
background:rgba(255,255,255,.2);
}

/* Tablet */

@media(max-width:992px){

.contact-grid{
grid-template-columns:repeat(2,1fr);
}

.contact-header h2{
font-size:42px;
}

}

/* Mobile */

@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
}

.contact-header h2{
font-size:34px;
}

.call-items{
flex-direction:column;
}

.contact-card{
padding:28px;
}

}


.email-title{
    font-size: 24px;
    margin-bottom: 25px;
    margin-top:25px;
    font-family: 'Cormorant Garamond', serif;
}

.email-items{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.email-items a{
padding:14px 24px;
border-radius:40px;
background:#f4effc;
/* color:#321b56; */

font-weight:500;
transition:.3s ease;
}

.email-items a{
background:#321b56;

}


/* Dropdown */
/* ===== SERVICES MEGA MENU ===== */

.dropdown{
    position:relative;
}

.dropdown-btn{
    display:flex;
    align-items:center;
    gap:6px;
    color:#fff;
}

/* Main dropdown panel */
.dropdown-content{
    position:absolute;
    top:55px;
    left:50%;
    transform:translateX(-50%) translateY(15px);

    width:900px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;

    padding:25px;

    background:rgba(16,20,33,.96);

    backdrop-filter:blur(20px);

    border:1px solid rgba(212,175,55,.25);

    border-radius:24px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.35);

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    z-index:9999;
}

/* Show dropdown */
.dropdown:hover .dropdown-content{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}


/* Individual service cards */

.dropdown-content a{

    display:flex;
    flex-direction:column;

    padding:18px;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    font-size:14px;

    transition:.3s;
}


/* Gold hover */

.dropdown-content a:hover{

    transform:translateY(-6px);

    border-color:#D4AF37;

    background:
    linear-gradient(
      135deg,
      rgba(212,175,55,.15),
      rgba(212,175,55,.03)
    );

    box-shadow:
    0 10px 25px rgba(212,175,55,.25);
}


/* Optional small subtitle */

.dropdown-content a span{
    font-size:12px;
    margin-top:6px;
    opacity:.7;
}


/* small top arrow */

.dropdown-content::before{

    content:"";

    position:absolute;

    top:-10px;
    left:50%;

    transform:translateX(-50%) rotate(45deg);

    width:20px;
    height:20px;

    background:#101421;

    border-left:1px solid rgba(212,175,55,.25);
    border-top:1px solid rgba(212,175,55,.25);
}



/* Mobile */

@media(max-width:992px){

.dropdown-content{

    width:100%;
    left:0;
    transform:none;

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.dropdown-content{
    grid-template-columns:1fr;
}

}

@media(max-width:992px){

    /* hide desktop mega menu */
    .dropdown-content{
        display:none;
    }

    /* mobile service wrapper */
    .mobile-services{
        width:100%;
    }

    .mobile-services-btn{

        display:flex;
        justify-content:space-between;
        align-items:center;

        width:100%;
        padding:16px 20px;

        color:#fff;
        text-decoration:none;

        border-radius:14px;

        background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.02)
        );

        border:1px solid rgba(212,175,55,.18);

        cursor:pointer;
    }


    /* Grid inside mobile */

    .mobile-services-list{

        display:none;

        margin-top:12px;

        padding:14px;

        border-radius:18px;

        background:
        rgba(16,20,33,.96);

        backdrop-filter:blur(20px);

        border:1px solid rgba(212,175,55,.15);

        grid-template-columns:repeat(2,1fr);

        gap:10px;
    }

    .mobile-services-list.active{
        display:grid;
    }

    .mobile-services-list a{

        padding:14px;

        border-radius:12px;

        text-decoration:none;

        color:#fff;

        font-size:13px;

        background:
        linear-gradient(
        135deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
        );

        border:1px solid rgba(255,255,255,.06);

        transition:.3s;
    }

    .mobile-services-list a:hover{

        border-color:#D4AF37;

        transform:translateY(-3px);

        box-shadow:
        0 8px 18px rgba(212,175,55,.18);

    }

}


/* smaller phones */

@media(max-width:600px){

.mobile-services-list{
    grid-template-columns:1fr;
}

}


.consult-modal{

    position:fixed;
    inset:0;

    display:none;

    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(10px);

    z-index:99999;
}

/* Popup box */

.consult-box{

    width:90%;
    max-width:500px;

    padding:35px;

    border-radius:28px;

    background:
    linear-gradient(
    135deg,
    #321B56,
    #4A2878
    );

    color:#fff;

    position:relative;

    box-shadow:
    0 20px 50px rgba(0,0,0,.4);
}

.consult-box h2{
    margin-bottom:10px;
}

.consult-box p{
    margin-bottom:25px;
    opacity:.8;
}

.consult-box input,
.consult-box textarea{

    width:100%;

    margin-bottom:15px;

    padding:14px 16px;

    border:none;

    border-radius:14px;

    outline:none;
}

.consult-box button{

    width:100%;

    padding:14px;

    border:none;

    border-radius:999px;

    background:linear-gradient(
    135deg,
    #F5B800,
    #FFD84D
    );

    font-weight:700;

    cursor:pointer;
}

.close-modal{

    position:absolute;
    right:20px;
    top:15px;

    font-size:28px;
    cursor:pointer;
}