/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Sora',sans-serif;
  background:#000;
  color:#fff;
  overflow-x:hidden;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:80px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 8%;
  background:rgba(0,0,0,0.8);
  backdrop-filter:blur(10px);
  z-index:1000;
}

.logo{
  font-size:22px;
  font-weight:700;
  background:linear-gradient(90deg,#a855f7,#ff0080);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

nav{
  display:flex;
  gap:30px;
}

nav a{
  text-decoration:none;
  color:#fff;
  font-weight:500;
  position:relative;
}

nav a::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  background:#a855f7;
  left:0;
  bottom:-5px;
  transition:0.3s;
}

nav a:hover::after{
  width:100%;
}

/* HAMBURGER */
.menu-toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
}

.menu-toggle span{
  width:25px;
  height:3px;
  background:white;
  border-radius:3px;
}

@media (max-width: 768px){

  nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#000;
    flex-direction:column;
    text-align:center;
    display:none;
    padding:20px 0;
  }

  nav.active{
    display:flex;
  }

  .menu-toggle{
    display:flex;
  }

}


/* HERO */
.hero{
  position:relative;
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 10%;
}

.bg-video{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  top:0;
  left:0;
  z-index:-2;
}

.hero::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  top:0;
  left:0;
  z-index:-1;
}

.hero-content{
  max-width:800px;
}

.hero-content h1{
  font-size:58px;
  margin-bottom:20px;
  line-height:1.2;
  background:linear-gradient(90deg,#a855f7,#ff0080,#00f0ff);
  background-size:200%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:gradientMove 6s linear infinite;
}

@keyframes gradientMove{
  0%{background-position:0%}
  100%{background-position:200%}
}

.hero-content p{
  opacity:0.85;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  padding:15px 45px;
  border-radius:50px;
  background:linear-gradient(90deg,#a855f7,#ff0080);
  text-decoration:none;
  color:#fff;
  font-weight:600;
  transition:0.3s;
}

.btn:hover{
  transform:scale(1.1);
  box-shadow:0 0 25px #a855f7;
}

/* PAGE SECTIONS */
.page-section{
  padding:140px 10% 100px;
  text-align:center;
  min-height:100vh;
}

/* SERVICES GRID */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:40px;
  max-width:1100px;
  margin:60px auto 0;
}

.service-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(15px);
  padding:40px;
  border-radius:20px;
  text-align:left;
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 30px #a855f7;
}

/* PRICING */
.pricing-container{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:40px;
  margin-top:60px;
}

.pricing-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(15px);
  padding:50px 30px;
  width:320px;
  border-radius:20px;
  transition:0.3s;
}

.pricing-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 30px #a855f7;
}

.featured{
  border:2px solid #a855f7;
  box-shadow:0 0 40px #a855f7;
  transform:scale(1.05);
}

/* CONTACT */
.contact-buttons{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  margin-top:40px;
}

.contact-btn{
  padding:15px 35px;
  border-radius:50px;
  text-decoration:none;
  color:#fff;
  font-weight:600;
  transition:0.3s;
}

.email-btn{
  background:linear-gradient(90deg,#a855f7,#ff0080);
}

.whatsapp-btn{
  background:linear-gradient(90deg,#00c853,#00e676);
}

.contact-btn:hover{
  transform:scale(1.08);
  box-shadow:0 0 20px rgba(255,255,255,0.3);
}

/* MOBILE */
@media(max-width:768px){

  nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#000;
    flex-direction:column;
    align-items:center;
    padding:30px 0;
    display:none;
  }

  nav.active{
    display:flex;
  }

  .menu-toggle{
    display:flex;
  }

  .hero-content h1{
    font-size:30px;
  }

}
.direct-email{
  margin-top:50px;
}

.highlight-email{
  display:inline-block;
  font-size:20px;
  font-weight:600;
  margin-top:15px;
  text-decoration:none;
  background:linear-gradient(90deg,#a855f7,#ff0080,#00f0ff);
  background-size:200%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:gradientMove 6s linear infinite;
  transition:0.3s;
}

.highlight-email:hover{
  transform:scale(1.08);
  text-shadow:0 0 15px rgba(168,85,247,0.8);
}
.about-page {
  padding: 100px 10%;
  background: #0a0a0a;
  color: #ffffff;
}

.about-container {
  max-width: 900px;
  margin: auto;
}

.about-page h1 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 30px;
}

.about-intro {
  text-align: center;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-block {
  margin-bottom: 40px;
}

.about-page h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ff4fd8;
}

.about-page p {
  color: #cccccc;
  line-height: 1.8;
}

.about-page ul {
  padding-left: 20px;
  margin-top: 10px;
}

.about-page li {
  margin-bottom: 10px;
  color: #cccccc;
}

.about-contact {
  margin-top: 50px;
  padding: 25px;
  background: #111;
  border-radius: 10px;
}
.privacy-page {
  padding: 100px 10%;
  background: #0a0a0a;
  color: #ffffff;
}

.privacy-container {
  max-width: 900px;
  margin: auto;
}

.privacy-page h1 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
}

.privacy-page h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #ff4fd8;
}

.privacy-page p,
.privacy-page li {
  color: #cccccc;
  line-height: 1.8;
}

.privacy-page ul {
  padding-left: 20px;
  margin-top: 10px;
}
.terms-page {
  padding: 100px 10%;
  background: #0a0a0a;
  color: #ffffff;
}

.terms-container {
  max-width: 900px;
  margin: auto;
}

.terms-page h1 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
}

.terms-page h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #ff4fd8;
}

.terms-page p {
  color: #cccccc;
  line-height: 1.8;
}
.site-footer {
  background: #0a0a0a;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #222;
}

.footer-content a {
  color: #999;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-content a:hover {
  color: #ff4fd8;
}

.footer-content span {
  color: #444;
}
.google-reviews {
  padding: 60px 20px;
  text-align: center;
  background: #0f0f0f;
  color: #fff;
}

.google-reviews h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.google-reviews p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.review-container .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ffffff;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.review-container .btn:hover {
  background: #ffd700;
  color: #000;
}
/* ===============================
   🔥 ULTRA PRO CINEMATIC LOADER
================================= */

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #111, #000);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  overflow: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

#particle-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}

.intro-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.logo-box {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff00cc, #3333ff);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 2s infinite;
}

.logo-box img {
  width: 60px;
}

.intro-title {
  margin-top: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: 3px;
  animation: glow 2s infinite alternate;
}

.percentage {
  margin-top: 15px;
  font-size: 20px;
  color: #fff;
  opacity: 0.8;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0px #ff00cc; }
  50% { box-shadow: 0 0 40px #ff00cc; }
  100% { box-shadow: 0 0 0px #ff00cc; }
}

@keyframes glow {
  from { text-shadow: 0 0 10px #ff00cc; }
  to { text-shadow: 0 0 25px #3333ff; }
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}
