
:root{

  --bg:#06060f;
  --card:#121224;

  --text:#ffffff;
  --muted:#bdbdd7;

  /* --primary:#7b5cff; */
  --primary:#D9A441;
  /* --secondary:#00d9ff; */
  --secondary:#F6D78A;
  /* --accent:#ff5ca8; */
   --accent:#9C6A14;
  --gold:#ffbe5c;

  --gradient:
 linear-gradient(135deg,#F8D87B,#C28A2B,#FFE8B6);

}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}
html,
body{

    overflow-x:hidden;

}
body{

  font-family:'Outfit',sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;

}

/* ===============================
   CUSTOM CURSOR
================================ */

.cursor{

  width:22px;
  height:22px;

  border:
  2px solid #fff;

  border-radius:50%;

  position:fixed;
  top:0;
  left:0;

  pointer-events:none;

  z-index:99999;

  transform:
  translate(-50%,-50%);

  transition:
  transform .15s ease,
  width .3s ease,
  height .3s ease,
  background .3s ease;

  mix-blend-mode:difference;

}

.cursor-grow{

  width:70px;
  height:70px;

  background:
  rgba(255,255,255,.08);

}

/* ===============================
   PARTICLES
================================ */

.particles{

  position:fixed;
  inset:0;
  overflow:hidden;
  z-index:-2;

}

.particle{

  position:absolute;
  border-radius:50%;

  background:
  radial-gradient(
  circle,
  rgba(255,255,255,.9),
  transparent);

  animation:
  floatParticle linear infinite;

  opacity:.4;

}

@keyframes floatParticle{

  from{
    transform:
    translateY(120vh)
    translateX(0);
  }

  to{
    transform:
    translateY(-120vh)
    translateX(120px);
  }

}

/* ===============================
   SOUND REACTIVE HERO GLOW
================================ */
.hero-glow{
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;

     background:
  radial-gradient(
  circle,
  rgba(217,164,65,.25),
  rgba(246,215,138,.12),
  transparent 70%);

  filter:blur(60px);

    transform: translate(-50%, -50%);
    transition: transform 0.08s linear;

    mix-blend-mode: screen;
    filter: blur(40px);
}


 ::-webkit-scrollbar{
      width:10px;
    }

    ::-webkit-scrollbar-track{
      background:#090914;
    }

    ::-webkit-scrollbar-thumb{
      background:linear-gradient(var(--primary),var(--accent));
      border-radius:10px;
    }


    
/* .hero-glow{

  position:absolute;

  width:700px;
  height:700px;

  border-radius:50%;

  background:
  radial-gradient(
  circle,
  rgba(123,92,255,.25),
  rgba(0,217,255,.12),
  transparent 70%);

  filter:blur(60px);

  z-index:-1;

  top:50%;
  left:50%;

  transform:
  translate(-50%,-50%);

  transition:
  .15s linear;

} */

/* ===============================
   NAVBAR
================================ */


/*=========================================================
                PREMIUM NAVBAR
=========================================================*/

.navbar{

    position:fixed;

    /* top:20px; */

    left:50%;

    transform:translateX(-50%);

    width: 100%;

    max-width:1400px;

    padding:16px 30px;

    z-index:9999;

    border-radius:22px;

    background:rgba(10,10,10,.55);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(24px);

    -webkit-backdrop-filter:blur(24px);

    transition:all .45s ease;

}

.navbar.navbar-scrolled{

    top:10px;

    background:rgba(5,5,5,.82);

    border-color:rgba(217,164,65,.18);

    box-shadow:
    0 18px 60px rgba(0,0,0,.35);

}


/*=========================================================
LOGO
=========================================================*/

.navbar-brand{
    height: 60px;
}


/*=========================================================
NAV LINKS
=========================================================*/

.navbar-nav{

    gap:12px;

}

.navbar-nav .nav-link{

    position:relative;

    color:#d6d6d6!important;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    padding:12px 18px!important;

    transition:.35s;

}

.navbar-nav .nav-link:hover{

    color:#fff!important;

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:18px;

    bottom:6px;

    width:0;

    height:2px;

    border-radius:20px;

    background:linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light));

    transition:.4s;

}

.navbar-nav .nav-link:hover::after,

.navbar-nav .nav-link.active::after{

    width:calc(100% - 36px);

}

.navbar-nav .nav-link.active{

    color:#fff!important;

}


/*=========================================================
NAV CTA
=========================================================*/

.navbar .primary-btn{

    padding:14px 28px;

    font-size:14px;

}


/*=========================================================
DROPDOWN
=========================================================*/

.dropdown-menu{

    margin-top:18px;

    border:none;

    background:rgba(12,12,12,.95);

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(22px);

    overflow:hidden;

}

.dropdown-item{

    color:#ddd;

    padding:14px 22px;

    transition:.35s;

}

.dropdown-item:hover{

    background:rgba(217,164,65,.12);

    color:#fff;

}


/*=========================================================
TOGGLER
=========================================================*/

.navbar-toggler{

    border:none;

    box-shadow:none!important;

}

.navbar-toggler i{

    color:#fff;

    font-size:28px;

}


.nav-btn{

  border:none;

  padding:14px 24px;
  border-radius:60px;

  background:var(--gradient);

  color:#fff;
  font-weight:700;

  box-shadow:
  0 10px 30px rgba(123,92,255,.3);

  transition:.3s;

}

.nav-btn:hover{

  transform:
  translateY(-3px);

}



/* ===============================
   MOBILE NAV FIX
=============================== */

@media(max-width:991px){

  /* Single horizontal navbar bar: logo left, hamburger right, vertically centered */
  .navbar{

    display:flex;
    align-items:center;

    padding:14px 20px;

  }

  .navbar .container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;

    width:100%;
    max-width:none;

    margin:0;
    padding:0;

  }

  /* Logo: keep left, vertically centered, never stretch */
  a.navbar-brand{

    display:flex;
    align-items:center;

    height:auto;

    margin:0;
    padding:0;

    flex-shrink:0;

  }

  .navbar-brand img.navbar-brand{

    width:auto;
    height:44px;
    max-height:44px;
    max-width:100%;

    margin:0;
    padding:0;

    flex-shrink:0;

  }

  /* Hamburger: right, square 48x48 touch target, icon perfectly centered */
  .navbar-toggler{

    display:flex;
    align-items:center;
    justify-content:center;

    width:48px;
    height:48px;
    min-width:48px;
    min-height:48px;

    padding:0;
    margin:0;

    flex-shrink:0;

  }

  .navbar-toggler .navbar-toggler-icon{

    margin:0;

    background-size:100% 100%;

  }

  /* Dropped-down menu always takes a full-width row below the logo/toggler */
  .navbar-collapse{

    flex-basis:100%;

    width:100%;

    max-height:calc(100vh - 120px);

    overflow-y:auto;

    -webkit-overflow-scrolling:touch;

  }

  .nav-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    margin-top:20px;

    text-align:center;
    text-decoration:none;

  }

  .nav-item.ms-lg-4{

    width:100%;

  }

}


.navbar .dropdown-menu{
    animation:dropdownFade .25s ease;
}

@keyframes dropdownFade{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ===============================
   HERO
================================ */
/* 

/* ===============================
   MAGNETIC BUTTON
================================ */


/* =====================================
       HERO
    ====================================== */

    .hero{
      min-height:100vh;
      display:flex;
      align-items:center;
      overflow:hidden;
    }

    .hero h1{
      font-size:clamp(2.6rem,7vw,6rem);
      line-height:1.05;
      font-weight:800;
      margin-bottom:25px;
    }

    .gradient-text{
      background:var(--gradient);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    .hero p{
      color:var(--muted);
      font-size:1.15rem;
      line-height:1.8;
      max-width:700px;
    }

    .hero-buttons{
      margin-top:35px;
      display:flex;
      gap:15px;
      flex-wrap:wrap;
    }

    .primary-btn{
      background:var(--gradient);
      color:#fff;
      border:none;
      padding:16px 30px;
      border-radius:60px;
      font-weight:700;
      box-shadow:0 10px 30px rgba(123,92,255,.4);
      transition:.3s;
      min-height:48px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
    }

    .primary-btn:hover{
      transform:translateY(-4px);
    }

    .secondary-btn{
      border:1px solid rgba(255,255,255,.15);
      background:rgba(255,255,255,.05);
      color:#fff;
      padding:16px 30px;
      border-radius:60px;
      backdrop-filter:blur(10px);
      transition:.3s;
      min-height:48px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
    }

    .secondary-btn:hover{
      background:rgba(255,255,255,.1);
    }

.magnetic{

  position:relative;
  transition:transform .2s ease;

}

/* ===============================
   FLOATING CARD
================================ */
    .floating-card{
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.08);
      backdrop-filter:blur(18px);
      border-radius:30px;
      padding:20px;
      box-shadow:0 20px 60px rgba(0,0,0,.3);
      animation:float 5s ease-in-out infinite;
    }

    @keyframes float{
      0%,100%{
        transform:translateY(0px);
      }
      50%{
        transform:translateY(-15px);
      }
    }

    .floating-card img{
      width:100%;
      border-radius:20px;
      object-fit:cover;
      height:240px;
    }

/* ===============================
   SECTION
================================ */

section{

  padding:120px 0;
  position:relative;

}

.section-title{

  text-align:center;
  margin-bottom:70px;

}

.section-title h2{

  font-size:
  clamp(2.5rem,5vw,4.5rem);

  font-weight:900;
  margin-bottom:15px;

}

.section-title p{

  color:var(--muted);

  max-width:700px;
  margin:auto;

  line-height:1.9;

}

 /* =====================================
     COMMON
  ===================================== */

  .gradient-text{

    background:
    linear-gradient(135deg,#F8D87B,#C28A2B,#FFE8B6);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

  }

  .mini-tag{

    display:inline-block;
    padding:10px 22px;
    border-radius:50px;

    background:
    rgba(255,255,255,.06);

    border:
    1px solid rgba(255,255,255,.08);

    color:#d8d8f2;

    margin-bottom:20px;

    backdrop-filter:blur(10px);

  }

  .section-title h2{

    font-size:clamp(2.5rem,5vw,4.5rem);
    font-weight:900;
    color:#fff;
    margin-bottom:18px;

  }

  .section-title p{

    color:#bdbdd7;
    max-width:700px;
    margin:auto;
    line-height:1.9;

  }


/* ===============================
   MARQUEE
================================ */

.marquee{

  overflow:hidden;
  white-space:nowrap;

  border-top:
  2px solid rgba(255,255,255,.06);

  border-bottom:
  2px solid rgba(255,255,255,.06);

  padding:25px 0;

}

.marquee-track{

  display:inline-block;

  animation:
  marquee 20s linear infinite;

}

.marquee span{

  font-size:2rem;
  font-weight:800;

  margin-right:80px;

  background:var(--gradient);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

}

@keyframes marquee{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }

}

/* ===============================
   EXPERIENCE CARDS
================================ */

.experience-card{

  position:relative;
  overflow:hidden;

  border-radius:35px;

  min-height:500px;

  padding:35px;

  display:flex;
  flex-direction:column;
  justify-content:end;

  background-size:cover;
  background-position:center;

  transition:.5s;

  transform-style:preserve-3d;

}

.experience-card::before{

  content:'';

  position:absolute;
  inset:0;

  background:
  linear-gradient(
  to top,
  rgba(0,0,0,.92),
  rgba(0,0,0,.1));

}

.experience-card>*{

  position:relative;
  z-index:2;

}

.experience-card:hover{

  transform:
  translateY(-12px)
  rotateX(2deg)
  rotateY(-2deg);

  box-shadow:
  0 25px 80px rgba(123,92,255,.25);

}

.tag{

  display:inline-block;

  padding:8px 18px;
  border-radius:50px;

  background:
  rgba(255,255,255,.1);

  margin-bottom:18px;

  backdrop-filter:blur(10px);

}

.experience-card h3{

  font-size:2rem;
  font-weight:800;

}

.experience-card p{

  color:#dcdcf0;
  line-height:1.8;

}

/* ===============================
   HORIZONTAL SNAP SCROLL
================================ */

.horizontal-scroll{

  overflow-x:auto;
  overflow-y:hidden;

  scroll-snap-type:x mandatory;

  scrollbar-width:none;

}

.horizontal-scroll::-webkit-scrollbar{
  display:none;
}

.scroll-track{

  display:flex;
  gap:30px;
  width:max-content;

}

.event-card{

  width:420px;
  height:620px;

  border-radius:40px;

  overflow:hidden;

  position:relative;

  flex-shrink:0;

  scroll-snap-align:center;

  transition:.5s;

}

.event-card img{

  width:100%;
  height:100%;
  object-fit:cover;

  transition:1s;

}

.event-card:hover img{

  transform:scale(1.08);

}

.event-overlay{

  position:absolute;
  inset:0;

  background:
  linear-gradient(
  to top,
  rgba(0,0,0,.95),
  rgba(0,0,0,.15));

}

.event-content{

  position:absolute;

  left:0;
  bottom:0;

  width:100%;

  padding:35px;
  z-index:2;

}

.event-content h3{

  font-size:2rem;
  font-weight:800;

}

.event-content p{

  color:#ddd;
  line-height:1.8;

}

/* =========================================
   CUSTOM CURSOR
========================================= */
.cursor {
  width: 12px;
  height: 12px;
  /* background: #00d4ff; */
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-grow {
  width: 40px;
  height: 40px;
  /* background: #00d4ff; */
  opacity: 0.5;
}

/* =========================================
   ACCESSIBILITY - FOCUS VISIBLE
========================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #D9A441;
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================
   FORM STATUS
========================================= */
.form-status.error {
  color: #ff6b6b;
  font-size: 0.95rem;
}

.form-status.success {
  color: #4caf50;
  font-size: 0.95rem;
}

/* =========================================
   STICKY CTA (MOBILE ONLY)
========================================= */
.sticky-cta {
  display: none;
}

@media (max-width: 991px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  }

  .sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
  }

  .sticky-cta a:active {
    opacity: 0.85;
  }

  .sticky-cta .sticky-cta-call {
    background: #1a1a2e;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .sticky-cta .sticky-cta-whatsapp {
    background: #25d366;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .sticky-cta i {
    font-size: 1.3rem;
  }

  body {
    padding-bottom: 64px;
  }

  footer {
    margin-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta a {
    transition: none;
  }
}

/* =========================================
   REDUCED MOTION
========================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .cursor,
  .hero-glow {
    display: none !important;
  }
}

/* Smooth Infinite Scroll */

@keyframes autoScroll{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(calc(-50% - 15px));
  }
}

/* Manual Drag Scroll */

.auto-scroll-section{
  cursor:grab;
  user-select:none;
}

.auto-scroll-section.dragging{
  cursor:grabbing;
}

.auto-scroll-track{
  transition:transform .2s ease-out;
}

/* =========================================
   IMMERSIVE EXPERIENCES
========================================= */

.immersive-scroll-wrapper{
  overflow:hidden;
  width:100%;
}

.immersive-scroll-track{
  display:flex;
  gap:30px;
  width:max-content;

  animation:autoScroll 40s linear infinite;
}

.immersive-scroll-wrapper:hover .immersive-scroll-track{
  animation-play-state:paused;
}

.immersive-item{
  width:420px;
  flex-shrink:0;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

  .immersive-item{
    width:300px;
  }

  .event-card{
    width:300px;
    height:500px;
  }

}

@media(max-width:360px){

  .immersive-item{
    width:255px;
  }

  .event-card{
    width:255px;
    height:440px;
  }

  .hero h1{
    font-size:2.4rem;
  }

  .hero-buttons{
    gap:10px;
  }

  .primary-btn,
  .secondary-btn{
    padding:14px 20px;
    font-size:0.95rem;
  }

}

/* ===============================
   PARTNERS
================================ */

.partner-row{

  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;

}

.partner-box{

  width:180px;
  height:100px;

  border-radius:24px;

  background:
  rgba(255,255,255,.05);

  border:
  1px solid rgba(255,255,255,.08);

  display:flex;
  align-items:center;
  justify-content:center;

  backdrop-filter:blur(10px);

  transition:.4s;

}

.partner-box:hover{

  transform:
  translateY(-10px);

  box-shadow:
  0 20px 60px rgba(123,92,255,.25);

}


@keyframes pulseText{

  0%,100%{
    opacity:1;
  }

  50%{
    opacity:.5;
  }

}

/* ===============================
   MOBILE
================================ */

@media(max-width:768px){

  @media(max-width:768px){

      section{
        padding:70px 0;
      }

      .hero{
        text-align:center;
        padding-top:120px;
      }

      .hero-buttons{
        justify-content:center;
      }

      .floating-card{
        margin-top:60px;
      }

      .video-box img{
        height:350px;
      }

    }
  .event-card{
    width:300px;
    height:500px;
  }

}
.best-events-wrapper{
  overscroll-behavior: contain;
  cursor: grab;
}

.best-events-wrapper:active{
  cursor: grabbing;
}


.music-particles{
  position:absolute;
  inset:0;
  overflow:hidden;
  pointer-events:none;
  z-index:1;
}

.music-note{

  position:absolute;
  bottom:-50px;

  color:rgba(255,255,255,.18);

  animation: floatMusic linear infinite;

  text-shadow:
    0 0 10px rgba(123,92,255,.6),
    0 0 20px rgba(0,217,255,.4);

  user-select:none;

}

@keyframes floatMusic{

  0%{
    transform:
      translateY(0)
      rotate(0deg);

    opacity:0;
  }

  10%{
    opacity:.35;
  }

  100%{
    transform:
      translateY(-120vh)
      rotate(360deg);

    opacity:0;
  }
}


.global-music-particles{

  position:fixed;
  inset:0;

  width:100%;
  height:100%;

  overflow:hidden;

  pointer-events:none;

  z-index:0;

}

.music-note{

  position:absolute;

  bottom:-100px;

  font-weight:700;

  user-select:none;

  animation:
    floatingMusic linear infinite;

  filter:
    drop-shadow(0 0 8px currentColor);

  opacity: 1;

}

/* MULTI COLORS */

.music-note:nth-child(5n){
  color:#7b5cff;
}

.music-note:nth-child(5n+1){
  color:#00d9ff;
}

.music-note:nth-child(5n+2){
  color:#ff5ca8;
}

.music-note:nth-child(5n+3){
  color:#ffbe5c;
}

.music-note:nth-child(5n+4){
  color:#00ffb3;
}

@keyframes floatingMusic{

  0%{

    transform:
      translateY(0)
      rotate(0deg)
      translateX(0);

    opacity:0;

  }

  10%{
    opacity:.55;
  }

  50%{

    transform:
      translateY(-50vh)
      rotate(180deg)
      translateX(30px);

  }

  100%{

    transform:
      translateY(-120vh)
      rotate(360deg)
      translateX(-30px);

    opacity:0;

  }

}

section,
nav,
footer{
  position:relative;
  z-index:2;
}

 /* =====================================
       STATS
    ====================================== */

    .stats{
      background:linear-gradient(
      135deg,
      rgba(123,92,255,.12),
      rgba(0,217,255,.08));
      border:1px solid rgba(255,255,255,.08);
      border-radius:35px;
      padding:60px 30px;
    }

    .stat-box{
      text-align:center;
    }

    .stat-box h2{
      font-size:3rem;
      font-weight:800;
      background:var(--gradient);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    .stat-box p{
      color:var(--muted);
      margin-top:10px;
    }

    /* =====================================
       VIDEO SECTION
    ====================================== */

    .video-box{
      border-radius:35px;
      overflow:hidden;
      position:relative;
    }

    .video-box img{
      width:100%;
      height:550px;
      object-fit:cover;
    }

    .play-btn{
      width:100px;
      height:100px;
      border-radius:50%;
      background:rgba(255,255,255,.15);
      backdrop-filter:blur(15px);
      display:flex;
      align-items:center;
      justify-content:center;
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%,-50%);
      font-size:40px;
      color:#fff;
      border:1px solid rgba(255,255,255,.1);
    }

    
  /* =====================================
     OFFERINGS SECTION
  ===================================== */

  .offerings-section{

    padding:120px 0;
    /* background:#080811; */

  }

  .offer-blob{

    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:.35;
    z-index:0;

  }

  .offer-blob-1{

    width:350px;
    height:350px;
    background:#7b5cff;

    top:-100px;
    left:-100px;

  }

  .offer-blob-2{

    width:350px;
    height:350px;
    background:#00d9ff;

    bottom:-100px;
    right:-100px;

  }

  .service-card{

    position:relative;
    overflow:hidden;

    border-radius:28px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(16px);

    transition:.5s;

    box-shadow:
    0 20px 50px rgba(0,0,0,.25);

  }

  .service-card:hover{

    transform:
    translateY(-10px);

  }

  .service-image{

    height:300px;
    overflow:hidden;

  }

  .service-image img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:1s;

  }

  .service-card:hover img{

    transform:scale(1.08);

  }

  .service-content{

    padding:22px;
    text-align:center;

  }

  .service-content h5{

    color:#fff;
    font-weight:700;
    margin-bottom:16px;

  }

  .service-btn{

    border:none;

    background:
    linear-gradient(#d9a441,#6e4b13);

    color:#fff;

    padding:12px 20px;
    border-radius:50px;

    width:100%;
    font-weight:600;

  }

   /* =====================================
       TESTIMONIALS
    ====================================== */

    .testimonial{
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
      padding:35px;
      border-radius:30px;
      height:100%;
      backdrop-filter:blur(12px);
      transition:.3s;
    }

    .testimonial:hover{
      transform:translateY(-10px);
    }

    .testimonial p{
      color:#d8d8e8;
      line-height:1.8;
    }

    .testimonial h5{
      margin-top:20px;
      font-weight:700;
    }

    /* =====================================
       CTA
    ====================================== */

    .cta{
      background:linear-gradient(
      135deg,
      #7b5cff,
      #ff5ca8);
      border-radius:40px;
      padding:80px 40px;
      text-align:center;
      overflow:hidden;
    }

    .cta h2{
      font-size:clamp(2rem,5vw,4rem);
      font-weight:800;
      margin-bottom:20px;
    }

    .cta p{
      max-width:700px;
      margin:auto;
      margin-bottom:30px;
      color:#f3f3f3;
    }

    /* ==========================
       CONTACT
    ========================== */

    .contact-box{

      background:
      rgba(255,255,255,.05);

      border:1px solid rgba(255,255,255,.08);

      backdrop-filter:blur(16px);

      border-radius:40px;
      overflow:hidden;

    }

    .contact-info{

      padding:50px;
      background:
      linear-gradient(
      135deg,
      rgba(123,92,255,.2),
      rgba(255,92,168,.12));

    }

    .contact-info h3{

      font-size:2.5rem;
      font-weight:900;
      margin-bottom:20px;

    }

    .contact-info p{

      color:#ddd;
      line-height:1.8;

    }

    .contact-item{

      display:flex;
      gap:18px;
      margin-top:30px;

    }

    .contact-icon{

      width:60px;
      height:60px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(255,255,255,.08);
      font-size:24px;

    }

    .contact-form{

      padding:50px;

    }

    @media(max-width:576px){
      .contact-info,
      .contact-form{
        padding:30px 20px;
      }

      .contact-info h3{
        font-size:2rem;
      }

      .contact-item{
        gap:14px;
        margin-top:22px;
      }

      .contact-icon{
        width:50px;
        height:50px;
        font-size:20px;
        flex-shrink:0;
      }
    }

    .form-control,
    .form-select{

      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
      height:58px;
      border-radius:18px;
      color:#fff;

    }

    .form-control::placeholder{
      color:#bbb;
    }

    textarea.form-control{

      height:150px;
      resize:none;
      padding-top:18px;

    }

    .form-control:focus,
    .form-select:focus{

      background:rgba(255,255,255,.06);
      box-shadow:none;
      border-color:#7b5cff;
      color:#fff;

    }

    /* =====================================
       FOOTER
    ====================================== */

    footer{
      padding:40px 0;
      border-top:1px solid rgba(255,255,255,.08);
      margin-top:80px;
    }

    .socials a{
      width:50px;
      height:50px;
      background:rgba(255,255,255,.05);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      color:#fff;
      margin-right:10px;
      transition:.3s;
    }

    .socials a:hover{
      background:var(--gradient);
      transform:translateY(-5px);
    }

    @media(max-width:576px){
      .socials{
        display:flex;
        justify-content:center;
        gap:10px;
      }

      .socials a{
        margin-right:0;
      }
    }
