:root{
  --bg:#070a12;
  --bg2:#0b0f19;
  --text:#eaf0ff;
  --muted:#a8b3d6;
  --glass:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.14);
  /* Brand (Double Seven): red + graphite */
  --brand-red:#ff0000;
  --brand-red2:#ff3b3b;
  --brand-graphite:#585a60;
  --brand-graphite2:#2f3036;
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:24px;
  --party-pink:#ff59c0;
  --party-cyan:#00e5ff;
  --party-mint:#3dffb3;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 800px at 20% 15%, rgba(124,92,255,.20), transparent 55%),
              radial-gradient(900px 700px at 80% 20%, rgba(0,229,255,.16), transparent 55%),
              radial-gradient(900px 900px at 50% 90%, rgba(61,255,179,.10), transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  overflow-x:hidden;
}

/* Party tint overlay (subtle) */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(900px 600px at 15% 20%, rgba(255,89,192,.10), transparent 60%),
    radial-gradient(900px 700px at 80% 30%, rgba(0,229,255,.10), transparent 62%),
    radial-gradient(900px 800px at 55% 95%, rgba(61,255,179,.08), transparent 62%);
  mix-blend-mode: screen;
  opacity:.85;
}

/* Canvas fireworks sits behind everything */
#fireworks{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
}

.bg{
  position:fixed;
  inset:0;
  z-index:1;
  pointer-events:none;
}
.glow{
  position:absolute;
  filter: blur(40px);
  opacity:.8;
  transform: translateZ(0);
}
.glow--a{
  width:520px;height:520px;
  left:-120px; top:-120px;
  background:radial-gradient(circle, rgba(255,0,0,.38), rgba(255,0,0,0) 62%);
}
.glow--b{
  width:520px;height:520px;
  right:-140px; bottom:-140px;
  background:radial-gradient(circle, rgba(88,90,96,.35), rgba(88,90,96,0) 62%);
}
.grid{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1), rgba(0,0,0,0) 70%);
  opacity:.25;
}

.wrap{
  position:relative;
  z-index:2;
  min-height:100vh;
  width:min(1240px, 94vw);
  margin:0 auto;
  padding: 28px 0 22px;
  display:flex;
  flex-direction:column;
  gap: 24px;
}

.chip{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  font-size:13px;
  color:rgba(234,240,255,.92);
  width: fit-content;
}
.chip--center{margin: 0 auto}
.chip__dot{
  width:10px;height:10px;
  border-radius:50%;
  background: radial-gradient(circle, var(--brand-red2), rgba(255,0,0,.12));
  box-shadow: 0 0 0 3px rgba(255,0,0,.16), 0 0 20px rgba(255,0,0,.50);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{transform:scale(1); opacity:1}
  50%{transform:scale(1.15); opacity:.75}
}

.hero{
  flex:1;
  display:grid;
  align-content:center;
  gap:14px;
  padding-top: 10px;
  justify-items:center;
  text-align:center;
}

.logoBlock{
  width:100%;
  display:grid;
  place-items:center;
  margin-bottom: 2px;
  gap: 0;
}
.logoHalo{
  position:relative;
  border-radius: 32px;
  padding: 22px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 90px rgba(0,0,0,.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow:hidden;
}
.logoHalo--wide{
  width: min(760px, 92vw);
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}
.logoHalo--wide::before,
.logoHalo--wide::after{
  content:none;
}
.logoHalo--round{
  width: min(280px, 74vw);
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 999px;
  display:grid;
  place-items:center;
  /* Same background as the page (no separate fill) */
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow:
    0 26px 90px rgba(0,0,0,.62),
    0 0 0 1px rgba(0,0,0,.10) inset;
}
.logoHalo::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 30% 35%, rgba(255,0,0,.34), rgba(255,0,0,0) 55%),
    radial-gradient(circle at 70% 55%, rgba(88,90,96,.28), rgba(88,90,96,0) 60%),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,.08), rgba(255,255,255,0) 65%);
  filter: blur(18px);
  opacity:.95;
  pointer-events:none;
}
.logoHalo::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 34px;
  background:
    conic-gradient(from 210deg,
      rgba(255,0,0,.0) 0deg,
      rgba(255,0,0,.34) 50deg,
      rgba(255,255,255,.14) 120deg,
      rgba(88,90,96,.28) 210deg,
      rgba(255,0,0,.34) 310deg,
      rgba(255,0,0,.0) 360deg);
  mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  padding:2px;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: blur(.2px);
  opacity:.9;
  pointer-events:none;
}

/* Ensure the wide logo variant has ZERO ring/border decorations */
.logoHalo.logoHalo--wide::before,
.logoHalo.logoHalo--wide::after{
  content:none;
}
.logoHalo--round::before{
  /* avoid tinting the inside; rely on box-shadow glow instead */
  content:none;
}
.logoHalo--round::after{
  content:none;
}
.heroLogo{
  position:relative;
  z-index:1;
  width: 100%;
  height: auto;
  max-width: 620px;
  display:block;
  margin: 0 auto;
  filter:
    drop-shadow(0 18px 40px rgba(0,0,0,.55))
    drop-shadow(0 0 26px rgba(255,0,0,.28))
    drop-shadow(0 0 18px rgba(88,90,96,.22));
}
.heroLogo--icon{
  width: 62%;
  max-width: none;
  margin: 0;
  filter:
    drop-shadow(0 14px 30px rgba(0,0,0,.55));
}

.heroLogo--wide{
  max-width: 760px;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.55));
}


.title{
  margin:0;
  font-size: clamp(42px, 6vw, 74px);
  line-height:1.02;
  letter-spacing:-.03em;
  font-weight:850;
  text-shadow: 0 16px 55px rgba(0,0,0,.45);
}
.title__accent{
  background: linear-gradient(90deg, rgba(255,0,0,1), rgba(255,255,255,.92), rgba(88,90,96,1), rgba(255,0,0,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  background-size: 220% 100%;
  animation: shine 2.6s ease-in-out infinite;
}

@keyframes shine{
  0%{background-position: 0% 50%}
  50%{background-position: 100% 50%}
  100%{background-position: 0% 50%}
}

.subtitle{
  margin:0;
  max-width: 92ch;
  color:rgba(234,240,255,.78);
  line-height:1.55;
  font-size: 16px;
  text-wrap: balance;
}

.card{
  margin-top:0;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;
}

@media (min-width: 1100px){
  /* Keep the intro line on one row on desktop */
  .subtitle{white-space: nowrap}
}

.fine{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.fine__hint{
  font-size:12px;
  color: rgba(168,179,214,.85);
}

.social{display:flex; gap:10px}
.icon{
  width:40px;height:40px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: rgba(234,240,255,.86);
  text-decoration:none;
  transition: transform .12s ease, background .12s ease, color .12s ease;
}
.icon:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.98);
  box-shadow: 0 0 0 1px rgba(255,255,255,.10) inset, 0 0 24px rgba(0,229,255,.10), 0 0 22px rgba(255,89,192,.08);
}

.foot{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  color: rgba(168,179,214,.78);
  font-size: 12px;
  padding: 10px 0 0;
}
.foot__link{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 1px;
}
.foot__link:hover{
  color: rgba(255,255,255,.92);
  border-bottom-color: rgba(255,255,255,.32);
}
.sep{opacity:.6}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

@media (max-width: 720px){
  .card{padding:20px}
  .logoHalo--round{width: min(240px, 76vw)}
  .fine{
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    gap: 12px;
  }
  .social{
    justify-content:center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce){
  .chip__dot{animation:none}
  .icon{transition:none}
  .grid{display:none}
  .title__accent{animation:none}
}

/* Navigation */
.navbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  background: rgba(7,10,18,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .2s ease;
}
.navbar__container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__logo{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.navbar__logo img{
  height: 50px;
  width: auto;
  max-width: 200px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
  object-fit: contain;
}
.navbar__menu{
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.navbar__link{
  padding: 10px 18px;
  color: rgba(234,240,255,.85);
  text-decoration: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all .15s ease;
  display: block;
}
.navbar__link:hover{
  color: rgba(255,255,255,1);
  background: rgba(255,255,255,.06);
}
.navbar__link:active{
  background: rgba(255,255,255,.1);
}
.navbar__link.active{
  color: var(--brand-red2);
  background: rgba(255,59,59,.1);
}
.navbar__toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.navbar__toggle span{
  width: 24px;
  height: 2px;
  background: rgba(234,240,255,.9);
  border-radius: 2px;
  transition: all .2s ease;
}

/* Section Styles */
.section{
  padding: 80px 0;
  scroll-margin-top: 80px;
}
.section__header{
  text-align: center;
  margin-bottom: 48px;
}
.section__title{
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -.02em;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(234,240,255,.85));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section__subtitle{
  font-size: 18px;
  color: rgba(234,240,255,.7);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
}
.btn--primary{
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red2));
  color: white;
  box-shadow: 0 8px 24px rgba(255,0,0,.3);
}
.btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,0,0,.4);
}
.btn--secondary{
  background: rgba(255,255,255,.08);
  color: rgba(234,240,255,.95);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}
.btn--secondary:hover{
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.btn--full{
  width: 100%;
}

/* Hero Section Updates */
.hero{
  padding-top: 100px;
  min-height: calc(100vh - 100px);
}
.hero__cta{
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Card Content Styling */
.card h3{
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
  color: rgba(255,255,255,.95);
}
.card p{
  margin: 0 0 16px;
  color: rgba(234,240,255,.8);
  line-height: 1.7;
}
.card p:last-child{
  margin-bottom: 0;
}

/* About Section */
.about__content{
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about__intro{
  max-width: 900px;
  margin: 0 auto;
}
.about__tagline{
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 18px;
  color: rgba(255,255,255,.9);
}
.about__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.about__card h3{
  color: var(--brand-red2);
}

/* Services Section */
.services__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.service__card{
  display: flex;
  flex-direction: column;
  transition: transform .2s ease;
}
.service__card:hover{
  transform: translateY(-4px);
}
.service__icon{
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red2);
  flex-shrink: 0;
}
.service__icon svg{
  width: 100%;
  height: 100%;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service__card h3{
  margin-bottom: 8px;
  color: rgba(255,255,255,.95);
}
.service__tagline{
  font-weight: 600;
  color: rgba(234,240,255,.9);
  margin-bottom: 16px;
  font-size: 16px;
}
.service__features{
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service__features li{
  padding-left: 24px;
  position: relative;
  color: rgba(234,240,255,.8);
  line-height: 1.6;
}
.service__features li::before{
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand-red2);
  font-weight: 600;
}

/* Gallery Section */
.gallery__grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery__item{
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery__video-wrapper{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: rgba(0,0,0,.3);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery__video-wrapper iframe,
.gallery__video-wrapper video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}
.gallery__video-info{
  padding: 16px 0 8px;
}
.gallery__video-info h3{
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: rgba(255,255,255,.95);
}
.gallery__video-info p{
  font-size: 14px;
  color: rgba(234,240,255,.7);
  margin: 0;
  line-height: 1.5;
}
.gallery__placeholder{
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(168,179,214,.6);
  font-size: 14px;
  border-radius: var(--radius);
}
.gallery__more{
  text-align: center;
  margin-top: 40px;
}

/* Contact Section */
.contact__container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact__info h3,
.contact__social h3{
  margin-bottom: 16px;
}
.contact__details{
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}
.contact__detail-item{
  display: flex;
  gap: 20px;
  align-items: start;
}
.contact__icon{
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,59,59,.1);
  border: 1px solid rgba(255,59,59,.2);
  border-radius: 12px;
  color: var(--brand-red2);
  flex-shrink: 0;
}
.contact__detail-item h4{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
}
.contact__detail-item a{
  color: rgba(234,240,255,.85);
  text-decoration: none;
  font-size: 15px;
  transition: color .15s ease;
}
.contact__detail-item a:hover{
  color: var(--brand-red2);
}
.contact__detail-item p{
  margin: 0;
  color: rgba(234,240,255,.85);
  font-size: 15px;
}
.contact__social-links{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.icon--large{
  width: 100%;
  height: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(234,240,255,.9);
}
.icon--large span{
  font-size: 15px;
  font-weight: 500;
}

/* Form Styles */
.form{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__group{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__label{
  font-size: 14px;
  font-weight: 500;
  color: rgba(234,240,255,.9);
}
.form__input{
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.2);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: all .15s ease;
}
.form__input:focus{
  outline: none;
  border-color: var(--brand-red2);
  background: rgba(0,0,0,.3);
  box-shadow: 0 0 0 3px rgba(255,59,59,.1);
}
.form__textarea{
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* Responsive Design */
@media (max-width: 960px){
  .navbar__toggle{
    display: flex;
  }
  .navbar__menu{
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(11,15,25,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 24px 24px;
    border-left: 1px solid rgba(255,255,255,.1);
    transition: right .3s ease;
    align-items: stretch;
  }
  .navbar__menu.active{
    right: 0;
  }
  .navbar__link{
    width: 100%;
    text-align: left;
    padding: 14px 18px;
  }
  .navbar__toggle.active span:nth-child(1){
    transform: rotate(45deg) translate(8px, 8px);
  }
  .navbar__toggle.active span:nth-child(2){
    opacity: 0;
  }
  .navbar__toggle.active span:nth-child(3){
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .about__grid,
  .contact__container{
    grid-template-columns: 1fr;
  }
  .services__grid{
    grid-template-columns: 1fr;
  }
  .hero__cta{
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }
  .hero__cta .btn{
    width: 100%;
  }
}

@media (max-width: 720px){
  .section{
    padding: 60px 0;
  }
  .section__header{
    margin-bottom: 32px;
  }
  .gallery__grid{
    grid-template-columns: 1fr;
  }
  .services__grid{
    grid-template-columns: 1fr;
  }
  .about__grid{
    grid-template-columns: 1fr;
  }
  .contact__social-links{
    grid-template-columns: 1fr;
  }
}


