/* =========================
RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#000;
  color:#fff;
  font-family:"Inter",sans-serif;
  overflow-x:hidden;
}

/* =========================
GLOBAL LINKS IOS FIX
========================= */

a{
  text-decoration:none;
  -webkit-tap-highlight-color:transparent;
}

/* =========================
CONTAINER
========================= */

.container{
  width:100%;
  max-width:1120px;
  margin:0 auto;
  padding:0 18px;
}

/* =========================
BACKGROUND
========================= */

.background-glow{
  position:fixed;
  inset:0;

  background:radial-gradient(
    circle at top,
    rgba(255,255,255,0.08),
    transparent 45%
  );

  z-index:-1;
}

/* =========================
HEADER
========================= */

.header{
  position:sticky;
  top:0;
  z-index:999;

  backdrop-filter:blur(10px);

  background:rgba(0,0,0,0.75);

  border-bottom:1px solid rgba(255,255,255,0.08);
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:10px 14px;
}

/* =========================
LOGO
========================= */

.logo-link{
  display:inline-flex;
  align-items:center;

  text-decoration:none !important;

  color:#fff !important;

  -webkit-text-fill-color:#fff !important;

  transition:.35s;
}

.logo-link:visited,
.logo-link:hover,
.logo-link:active{
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
}

.logo-link:hover{
  opacity:.9;
}

.site-logo{
  width:100%;
  max-width:260px;

  height:auto;

  display:block;

  object-fit:contain;
}

/* =========================
MENU
========================= */

.menu{
  display:flex;
  gap:40px;
}

.menu a{
  color:#ccc;

  transition:.3s;

  text-transform:uppercase;

  letter-spacing:2px;

  font-size:13px;
}

.menu a:hover{
  color:#fff;
}

/* =========================
BUTTONS
========================= */

.btn-primary,
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:16px 34px;

  border-radius:999px;

  transition:.35s;

  text-transform:uppercase;

  letter-spacing:2px;

  font-size:13px;
}

.btn-primary{
  background:#fff;
  color:#000;
  font-weight:600;
}

.btn-secondary{
  background:rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.12);

  color:#fff;
}

.btn-primary.whatsapp-btn{
  background:linear-gradient(135deg,#25d366,#1ebe5d) !important;

  color:#fff !important;

  box-shadow:
    0 0 25px rgba(37,211,102,0.35),
    0 10px 30px rgba(37,211,102,0.18);
}

.btn-primary.whatsapp-btn:hover{
  transform:translateY(-4px);

  background:linear-gradient(135deg,#2dfc7b,#25d366) !important;
}

/* =========================
PREMIUM BADGE
========================= */

.premium-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:12px 24px;

  border-radius:999px;

  border:1px solid rgba(255,255,255,0.12);

  background:rgba(255,255,255,0.03);

  margin-bottom:40px;

  text-transform:uppercase;

  letter-spacing:2px;

  font-size:12px;
}

.section-badge{
  margin-bottom:40px;
}

.pulse{
  width:8px;
  height:8px;

  border-radius:50%;

  background:#fff;

  animation:pulse 1.5s infinite;
}

@keyframes pulse{

  0%{
    transform:scale(1);
    opacity:.5;
  }

  50%{
    transform:scale(1.5);
    opacity:1;
  }

  100%{
    transform:scale(1);
    opacity:.5;
  }

}

/* =========================
HERO
========================= */

.hero{
  min-height:100vh;

  display:flex;
  align-items:center;
}

.hero-grid{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:80px;

  align-items:center;

  padding:80px 24px;
}

.hero-content h2{
  font-size:86px;
  line-height:.95;
  font-weight:300;
}

.hero-content strong{
  font-weight:700;
}

.hero-content p{
  margin-top:32px;

  color:#aaa;

  line-height:1.8;

  font-size:18px;

  max-width:620px;
}

.hero-buttons{
  margin-top:40px;

  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

/* =========================
HERO IMAGE
========================= */

.hero-image-wrapper{
  position:relative;

  display:flex;
  justify-content:center;
}

.image-glow{
  position:absolute;

  width:450px;
  height:450px;

  border-radius:50%;

  background:rgba(255,255,255,0.08);

  filter:blur(100px);
}

.hero-image-card{
  position:relative;

  overflow:hidden;

  border-radius:48px;

  border:1px solid rgba(255,255,255,0.08);
}

.hero-image{
  width:100%;
  max-width:520px;
  height:760px;

  object-fit:cover;

  filter:grayscale(100%);

  transition:.5s;
}

.hero-image:hover{
  filter:grayscale(0%);
}

.image-overlay{
  position:absolute;
  inset:0;

  background:linear-gradient(to top,rgba(0,0,0,0.9),transparent);
}

/* =========================
SECTIONS
========================= */

.about,
.services,
.cta-section{
  padding:120px 0;
}

.section-dark{
  background:rgba(255,255,255,0.02);

  border-top:1px solid rgba(255,255,255,0.08);
}

/* =========================
ABOUT
========================= */

.about-intro{
  max-width:1100px;
}

.about-intro h2{
  font-size:82px;

  font-weight:250;

  line-height:.95;

  letter-spacing:-3px;

  margin-bottom:14px;
}

.about-intro h3{
  display:flex;
  flex-wrap:wrap;
  gap:10px;

  font-size:26px;

  margin-bottom:34px;

  text-transform:uppercase;
}

.about-intro h3 span{
  font-size:24px;

  font-weight:300;

  color:#8d8d8d;

  text-transform:none;

  font-style:italic;
}

.about-intro p{
  max-width:920px;

  font-size:24px;

  line-height:1.9;

  color:#8a8a8a;
}

/* =========================
SERVICES
========================= */

.services-grid{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:30px;
}

.service-card{
  padding:40px;

  border-radius:32px;

  border:1px solid rgba(255,255,255,0.08);

  background:rgba(255,255,255,0.03);

  transition:.4s;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card span{
  width:56px;
  height:56px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:18px;

  border:1px solid rgba(255,255,255,0.08);

  margin-bottom:24px;
}

.service-card h3{
  margin-bottom:18px;

  font-size:28px;
}

.service-card p{
  color:#aaa;

  line-height:1.8;
}

/* =========================
THUMB REELS
========================= */

.reel-card{
  position:relative;

  display:block;

  margin-top:28px;

  border-radius:28px;

  overflow:hidden;

  background:#000;
}

.reel-card img{
  width:100%;

  height:620px;

  object-fit:cover;

  display:block;

  transition:.45s;

  filter:brightness(.82);
}

.reel-card:hover img{
  transform:scale(1.04);

  filter:brightness(1);
}

.play-button{
  position:absolute;

  top:50%;
  left:50%;

  transform:translate(-50%,-50%);

  width:92px;
  height:92px;

  border-radius:50%;

  background:rgba(255,255,255,0.12);

  backdrop-filter:blur(12px);

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;

  font-size:34px;

  border:1px solid rgba(255,255,255,0.2);

  transition:.35s;
}

.reel-card:hover .play-button{
  transform:translate(-50%,-50%) scale(1.08);

  background:rgba(255,255,255,0.18);
}

/* =========================
CTA
========================= */

.cta-box{
  text-align:center;

  padding:80px;

  border-radius:48px;

  border:1px solid rgba(255,255,255,0.08);

  background:linear-gradient(
    to bottom right,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
}

.cta-box h2{
  font-size:54px;

  font-weight:300;

  line-height:1.2;

  max-width:900px;

  margin:0 auto;
}

.cta-box .btn-primary{
  margin-top:40px;
}

/* =========================
FOOTER
========================= */

.footer{
  padding:40px 0;

  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-content{
  display:flex;

  justify-content:space-between;

  color:#777;

  font-size:12px;

  text-transform:uppercase;

  letter-spacing:2px;
}

/* =========================
TABLET
========================= */

@media(max-width:992px){

  .hero-grid,
  .services-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .menu{
    display:none;
  }

  .nav-container{
    flex-direction:column;
    gap:18px;
    text-align:center;
  }

  .hero{
    min-height:auto;
    padding-top:60px;
  }

  .hero-content{
    text-align:center;
  }

  .hero-content p{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-content h2{
    font-size:58px;
  }

  .hero-image{
    max-width:100%;
    height:auto;
  }

  .about-intro h2{
    font-size:52px;
  }

  .about-intro h3{
    font-size:20px;
    line-height:1.5;
  }

  .about-intro h3 span{
    font-size:20px;
  }

  .about-intro p{
    font-size:18px;
    line-height:1.8;
  }

  .cta-box{
    padding:50px 30px;
  }

  .cta-box h2{
    font-size:36px;
  }

  .footer-content{
    flex-direction:column;
    gap:12px;
    text-align:center;
  }

}

/* =========================
MOBILE
========================= */

@media(max-width:576px){

  .header{
    border-bottom:1px solid rgba(255,255,255,0.05);
  }

  .nav-container{
    padding:6px 10px;
  }

  .site-logo{
  max-width:310px;
  height:auto;

  display:block;

  object-fit:contain;
  }

  .hero{
    padding-top:20px;
  }

  .hero-grid{
    padding:30px 0;
    gap:40px;
  }

  .hero-content h2{
    font-size:42px;
    line-height:1;
  }

  .hero-content p{
    font-size:15px;
    line-height:1.7;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
    font-size:12px;
    padding:14px 20px;
  }

  .about,
  .services,
  .cta-section{
    padding:70px 0;
  }

  .about-intro h2{
    font-size:38px;
  }

  .about-intro h3{
    font-size:16px;
  }

  .about-intro h3 span{
    font-size:16px;
  }

  .about-intro p{
    font-size:15px;
    line-height:1.8;
  }

  .cta-box{
    padding:40px 20px;
    border-radius:30px;
  }

  .cta-box h2{
    font-size:32px;
    line-height:1.3;
  }

  .services-grid{
    gap:22px;
  }

  .service-card{
    padding:20px;
    border-radius:24px;
  }

  .service-card h3{
    font-size:21px;
  }

  .service-card p{
    font-size:14px;
    line-height:1.7;
  }

  .reel-card{
    margin-top:20px;
    border-radius:22px;
  }

  .reel-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:22px;
  }

  .play-button{
    width:64px;
    height:64px;
    font-size:22px;
  }
  /* =========================
SOCIAL PREMIUM
========================= */

.social-section{
  padding:100px 0;
  text-align:center;
}

.social-title{
  font-size:48px;
  font-weight:300;
  max-width:800px;
  margin:0 auto 40px;
  line-height:1.3;
}

.social-icons{
  display:flex;
  justify-content:center;
  gap:24px;
}

.social-icon{
  width:80px;
  height:80px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;

  font-size:34px;

  transition:.35s;
}

.instagram{
  background:linear-gradient(
    45deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );

  color:#fff;
}

.tiktok{
  background:#111;

  color:#fff;

  border:1px solid rgba(255,255,255,.15);
}

.social-icon:hover{
  transform:translateY(-6px);
}

@media(max-width:576px){

  .social-title{
    font-size:30px;
  }

  .social-icon{
    width:65px;
    height:65px;
    font-size:28px;
  }

}

}