/* ========================= */
/* style.css */
/* ========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#0f161a;
  color:white;
  overflow-x:hidden;
}

/* ========================= */
/* SCROLLBAR */
/* ========================= */

::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#11181d;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(#fa7d05,#f8ba02);
  border-radius:20px;
}

/* ========================= */
/* BACKGROUND */
/* ========================= */

.bg-animation{

  position:fixed;

  width:100%;
  height:100%;

  z-index:-5;

  background:
  radial-gradient(circle at top left,#fa7d05 0%,transparent 25%),
  radial-gradient(circle at bottom right,#f8ba02 0%,transparent 25%),
  radial-gradient(circle at center,#f3c51d22 0%,transparent 35%),
  #0f161a;

  animation:bgMove 12s infinite alternate;
}

@keyframes bgMove{

  0%{
    filter:hue-rotate(0deg);
    transform:scale(1);
  }

  100%{
    filter:hue-rotate(20deg);
    transform:scale(1.1);
  }

}

/* ========================= */
/* GLASS */
/* ========================= */

.glass{

  background:rgba(255,255,255,0.07);

  backdrop-filter:blur(16px);

  border:1px solid rgba(255,255,255,0.1);

  box-shadow:
  0 8px 32px rgba(0,0,0,0.4),
  inset 0 0 20px rgba(255,255,255,0.04);

  position:relative;

  overflow:hidden;
}

.glass::before{

  content:"";

  position:absolute;

  top:-100%;
  left:-50%;

  width:60%;
  height:300%;

  background:rgba(255,255,255,0.08);

  transform:rotate(25deg);

  transition:0.8s;
}

.glass:hover::before{
  left:120%;
}

/* ========================= */
/* LOADER */
/* ========================= */

#loader{

  position:fixed;

  width:100%;
  height:100vh;

  background:#0f161a;

  z-index:99999;

  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;

  transition:1s;
}

.loader-content{
  text-align:center;
  z-index:2;
}

.loader-content h1{

  font-size:3rem;

  color:#fa7d05;

  margin-bottom:10px;
}

.loader-content p{

  color:#fff;

  opacity:0.7;
}

/* ========================= */
/* BUBBLES */
/* ========================= */

.bubbles span{

  position:absolute;

  bottom:-100px;

  width:30px;
  height:30px;

  border-radius:50%;

  background:rgba(255,255,255,0.12);

  border:1px solid rgba(255,255,255,0.3);

  animation:bubble 10s linear infinite;
}

.bubbles span:nth-child(1){left:10%;animation-duration:7s;}
.bubbles span:nth-child(2){left:20%;animation-duration:11s;}
.bubbles span:nth-child(3){left:30%;animation-duration:9s;}
.bubbles span:nth-child(4){left:40%;animation-duration:13s;}
.bubbles span:nth-child(5){left:55%;animation-duration:8s;}
.bubbles span:nth-child(6){left:70%;animation-duration:12s;}
.bubbles span:nth-child(7){left:85%;animation-duration:9s;}
.bubbles span:nth-child(8){left:95%;animation-duration:10s;}

@keyframes bubble{

  0%{
    transform:translateY(0) scale(0.6);
    opacity:0;
  }

  50%{
    opacity:1;
  }

  100%{
    transform:translateY(-120vh) scale(1.4);
    opacity:0;
  }

}

/* ========================= */
/* CURSOR */
/* ========================= */

.cursor{

  width:20px;
  height:20px;

  border:2px solid #fa7d05;

  border-radius:50%;

  position:fixed;

  pointer-events:none;

  z-index:999999;

  transform:translate(-50%,-50%);

  transition:0.08s;

  box-shadow:
  0 0 20px #fa7d05,
  0 0 50px #fa7d05;
}

@media(max-width:768px){

  .cursor{
    display:none;
  }

}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar{

  width:90%;

  margin:auto;

  position:fixed;

  top:20px;
  left:0;
  right:0;

  padding:16px 28px;

  border-radius:22px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  z-index:999;
}

.logo img{

  width:60px;

  object-fit:contain;

  filter:
  drop-shadow(0 0 10px rgba(250,125,5,0.4));

  transition:0.4s;
}

.logo img:hover{
  transform:scale(1.05);
}

.desktop-nav{
  display:flex;
  gap:30px;
}

.desktop-nav a{

  color:white;

  text-decoration:none;

  transition:0.3s;

  position:relative;

  font-weight:500;
}

.desktop-nav a::after{

  content:"";

  position:absolute;

  left:0;
  bottom:-8px;

  width:0%;
  height:2px;

  background:#fa7d05;

  transition:0.4s;
}

.desktop-nav a:hover{
  color:#fa7d05;
}

.desktop-nav a:hover::after{
  width:100%;
}

/* ========================= */
/* MOBILE MENU */
/* ========================= */

.menu-toggle{

  width:54px;
  height:54px;

  display:none;

  flex-direction:column;

  justify-content:center;
  align-items:center;

  gap:6px;

  border-radius:18px;

  background:
  rgba(255,255,255,0.08);

  border:
  1px solid rgba(255,255,255,0.1);

  cursor:pointer;

  transition:0.4s;

  z-index:1001;
}

.menu-toggle span{

  width:24px;
  height:2px;

  background:white;

  border-radius:20px;

  transition:0.4s;
}

.menu-toggle.active span:nth-child(1){

  transform:
  translateY(8px)
  rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){

  transform:
  translateY(-8px)
  rotate(-45deg);
}

/* MOBILE WRAPPER */

.mobile-nav-wrapper{

  position:fixed;

  inset:0;

  background:
  rgba(0,0,0,0.55);

  backdrop-filter:blur(12px);

  opacity:0;

  pointer-events:none;

  transition:0.5s;

  z-index:998;
}

.mobile-nav-wrapper.active{

  opacity:1;

  pointer-events:auto;
}

/* MOBILE NAV */

.mobile-nav{

  position:absolute;

  top:110px;
  left:50%;

  transform:
  translateX(-50%)
  translateY(-30px)
  scale(0.95);

  width:92%;

  padding:30px;

  border-radius:30px;

  display:flex;
  flex-direction:column;

  gap:18px;

  transition:0.5s;
}

.mobile-nav-wrapper.active .mobile-nav{

  transform:
  translateX(-50%)
  translateY(0)
  scale(1);
}

.mobile-nav a{

  text-decoration:none;

  color:white;

  padding:18px 20px;

  border-radius:18px;

  font-size:1rem;

  font-weight:600;

  background:
  rgba(255,255,255,0.04);

  border:
  1px solid rgba(255,255,255,0.06);

  transition:0.3s;
}

.mobile-nav a:hover{

  background:
  linear-gradient(
  135deg,
  #fa7d05,
  #f8ba02);

  color:black;

  transform:
  translateX(6px);
}

/* MOBILE SOCIALS */

.mobile-socials{

  display:flex;

  justify-content:center;

  gap:18px;

  margin-top:10px;
}

.mobile-socials a{

  width:60px;
  height:60px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  font-size:1.4rem;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero-full{

  position:relative;

  min-height:100vh;

  display:flex;
  align-items:center;

  overflow:hidden;

  padding:120px 8% 80px;
}

.hero-bg{

  position:absolute;

  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  animation:heroZoom 14s ease-in-out infinite alternate;

  z-index:-3;
}

@keyframes heroZoom{

  0%{
    transform:scale(1);
  }

  100%{
    transform:scale(1.08);
  }

}

.hero-overlay{

  position:absolute;

  inset:0;

  background:
  linear-gradient(
  90deg,
  rgba(15,22,26,0.94) 0%,
  rgba(15,22,26,0.78) 38%,
  rgba(15,22,26,0.38) 70%,
  rgba(15,22,26,0.12) 100%);

  z-index:-2;
}

.hero-content{

  max-width:720px;

  z-index:5;
}

.hero-badge{

  display:inline-flex;

  align-items:center;

  gap:10px;

  padding:14px 24px;

  border-radius:50px;

  margin-bottom:28px;

  font-size:0.95rem;

  font-weight:600;
}

.hero-full h1{

  font-size:5.5rem;

  line-height:1.02;

  font-weight:900;

  margin-bottom:28px;

  letter-spacing:-3px;
}

.hero-full h1 span{

  color:#fa7d05;
}

.hero-full p{

  font-size:1.1rem;

  line-height:2;

  opacity:0.85;

  max-width:620px;

  margin-bottom:42px;
}

/* BUTTONS */

.hero-buttons{

  display:flex;

  gap:20px;

  flex-wrap:wrap;
}

.btn{

  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:18px 34px;

  border-radius:16px;

  text-decoration:none;

  font-weight:700;

  transition:0.4s ease;

  border:1px solid transparent;
}

.btn.primary{

  background:
  linear-gradient(
  135deg,
  #fa7d05,
  #f8ba02);

  color:#111;
}

.btn.primary:hover{

  transform:
  translateY(-5px)
  scale(1.03);

  box-shadow:
  0 15px 40px rgba(250,125,5,0.35);
}

.btn.secondary{

  background:rgba(255,255,255,0.08);

  color:white;

  border:1px solid rgba(255,255,255,0.15);
}

.btn.secondary:hover{

  transform:
  translateY(-5px)
  scale(1.03);

  border-color:#fa7d05;

  color:#fa7d05;
}

/* ========================= */
/* SECTION */
/* ========================= */

section{
  padding:120px 5%;
}

.section-title{

  font-size:3rem;

  text-align:center;

  margin-bottom:80px;
}

/* ========================= */
/* SERVICES */
/* ========================= */

.services-tree{

  position:relative;

  max-width:1000px;

  margin:auto;
}

.line{

  position:absolute;

  left:50%;

  transform:translateX(-50%);

  width:4px;
  height:100%;

  background:
  linear-gradient(#fa7d05,#f8ba02);
}

.service-card{

  width:40%;

  padding:35px;

  border-radius:28px;

  margin:40px 0;

  transition:0.4s;
}

.service-card:hover{

  transform:
  translateY(-10px)
  scale(1.03);
}

.service-card i{

  font-size:2.2rem;

  color:#fa7d05;

  margin-bottom:20px;
}

.service-card h3{
  font-size:1.5rem;
}

.left{
  margin-right:auto;
}

.right{
  margin-left:auto;
}

/* ========================= */
/* GALLERY */
/* ========================= */

.cinematic-gallery{

  position:relative;

  overflow:hidden;

  padding-top:60px;
}

.gallery-intro{

  text-align:center;

  margin-bottom:90px;
}

.gallery-intro p{

  opacity:0.65;

  font-size:1rem;

  margin-top:18px;

  letter-spacing:0.5px;
}

/* ITEMS */

.cinematic-item{

  position:relative;

  min-height:auto;

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:70px;

  align-items:center;

  margin-bottom:140px;

  opacity:0;

  transform:
  translateY(80px)
  scale(0.97);

  transition:1.2s ease;
}

.cinematic-item.active{

  opacity:1;

  transform:
  translateY(0)
  scale(1);
}

/* GLOW */

.cinematic-item::before{

  content:"";

  position:absolute;

  width:420px;
  height:420px;

  background:
  radial-gradient(
  rgba(250,125,5,0.10),
  transparent 70%);

  filter:blur(90px);

  z-index:-1;

  top:50%;
  left:50%;

  transform:translate(-50%,-50%);
}

/* REVERSE */

.cinematic-item.reverse .cinematic-image{
  order:2;
}

.cinematic-item.reverse .cinematic-content{
  order:1;
}

/* IMAGE */

.cinematic-image{

  position:relative;

  width:100%;

  max-width:720px;

  margin:auto;

  border-radius:34px;

  overflow:hidden;

  transform-style:preserve-3d;

  transition:0.7s ease;
}

.cinematic-image.small img{
  height:420px;
}

.cinematic-image.medium img{
  height:520px;
}

.cinematic-image.large img{
  height:620px;
}

.cinematic-image::before{

  content:"";

  position:absolute;

  inset:0;

  background:
  linear-gradient(
  to top,
  rgba(0,0,0,0.45),
  transparent 45%);

  z-index:2;
}

.cinematic-image img{

  width:100%;

  height:520px;

  object-fit:inherit;

  transition:
  transform 1s ease,
  filter 0.7s ease;

  cursor:pointer;
}

/* IMAGE HOVER */

.cinematic-image:hover{

  transform:
  perspective(1200px)
  rotateY(-3deg)
  rotateX(2deg)
  translateY(-6px);
}

.cinematic-image:hover img{

  transform:scale(1.05);

  filter:
  brightness(1.04)
  contrast(1.03);
}

/* SHINE */

.cinematic-image::after{

  content:"";

  position:absolute;

  top:-120%;
  left:-40%;

  width:50%;
  height:300%;

  background:
  rgba(255,255,255,0.12);

  transform:rotate(20deg);

  transition:1s;

  z-index:3;
}

.cinematic-image:hover::after{
  left:130%;
}

/* CONTENT */

.cinematic-content{

  position:relative;

  z-index:3;
}

.cinematic-content span{

  position:absolute;

  top:-70px;
  left:0;

  font-size:5rem;

  font-weight:900;

  color:rgba(255,255,255,0.04);

  line-height:1;
}

.cinematic-content h2{

  font-size:3rem;

  line-height:1.15;

  margin-bottom:24px;

  text-shadow:
  0 0 20px rgba(250,125,5,0.15);
}

.cinematic-content p{

  max-width:520px;

  line-height:2;

  opacity:0.72;

  font-size:1rem;
}

/* ========================= */
/* LIGHTBOX */
/* ========================= */

.lightbox{

  position:fixed;

  inset:0;

  background:
  rgba(0,0,0,0.95);

  display:flex;
  justify-content:center;
  align-items:center;

  opacity:0;

  pointer-events:none;

  transition:0.5s;

  z-index:999999;
}

.lightbox.active{

  opacity:1;

  pointer-events:auto;
}

.lightbox-img{

  width:88%;

  max-width:1300px;

  border-radius:24px;

  transform:scale(0.92);

  transition:0.5s;
}

.lightbox.active .lightbox-img{
  transform:scale(1);
}

.close-lightbox{

  position:absolute;

  top:28px;
  right:45px;

  font-size:4rem;

  color:white;

  cursor:pointer;

  transition:0.3s;
}

.close-lightbox:hover{

  color:#fa7d05;

  transform:
  rotate(90deg)
  scale(1.1);
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer{
  padding:60px 5% 30px;
}

.footer-box{

  border-radius:30px;

  padding:50px;

  text-align:center;
}

.footer-box h2{

  color:#fa7d05;

  margin-bottom:10px;
}

.contact-title{

  margin-top:20px;

  line-height:1.7;
}

.contact-items{

  margin-top:35px;

  display:flex;

  justify-content:center;

  gap:40px;

  flex-wrap:wrap;
}

.contact-items div{

  display:flex;

  align-items:center;

  gap:10px;
}

.contact-items a{

  color:white;

  text-decoration:none;
}

.contact-items i{
  color:#fa7d05;
}

/* SOCIALS */

.socials{

  display:flex;

  justify-content:center;

  gap:20px;

  margin-top:40px;
}

.socials a{

  width:65px;
  height:65px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  color:white;

  text-decoration:none;

  font-size:1.5rem;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.1);

  transition:0.4s;
}

.socials a:hover{

  transform:
  translateY(-8px)
  scale(1.1);

  background:
  linear-gradient(
  135deg,
  #fa7d05,
  #f8ba02);

  color:black;
}

/* COPYRIGHT */

.copyright{

  margin-top:45px;

  padding-top:25px;

  border-top:1px solid rgba(255,255,255,0.08);

  opacity:0.6;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

  .desktop-nav{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .navbar{

    width:92%;

    padding:14px 18px;
  }

  .hero-full{

    min-height:auto;

    padding:
    110px 0 0 0;

    display:flex;
    flex-direction:column;

    justify-content:flex-end;
  }

  .hero-bg{

    position:relative;

    width:100%;

    height:auto;

    object-fit:contain;

    display:block;

    animation:none;

    transform:none !important;
  }

  .hero-overlay{

    background:
    linear-gradient(
    to bottom,
    rgba(15,22,26,0.25),
    rgba(15,22,26,0.92)
    );
  }

  .hero-content{

    width:100%;

    padding:
    40px 6% 50px;

    margin-top:-5px;

    background:
    linear-gradient(
    to bottom,
    rgba(15,22,26,0),
    #0f161a 25%
    );
  }

  .hero-full h1{

    font-size:2.7rem;

    line-height:1.1;
  }

  .hero-full p{

    font-size:0.95rem;

    line-height:1.8;
  }

  .hero-buttons{

    flex-direction:column;

    width:100%;
  }

  .btn{
    width:100%;
  }

  .services{

    padding-top:70px;
  }

  .service-card{
    width:100%;
  }

  .line{
    display:none;
  }

  .cinematic-item{

    grid-template-columns:1fr;

    gap:40px;

    margin-bottom:90px;
  }

  .cinematic-image img{

    height:auto;

    max-height:420px;
  }

  .cinematic-content{
    text-align:center;
  }

  .cinematic-content h2{
    font-size:2rem;
  }

  .footer-box{
    padding:35px 25px;
  }

  .contact-items{

    flex-direction:column;

    gap:18px;
  }

}

/* CLEANING BUBBLES */ 
.bubbles{ 
position:absolute;
width:100%;
height:100%;
overflow:hidden;
top:0; left:0;
z-index:1;
pointer-events:none;
}
.bubbles span{ 
    position:absolute;
    bottom:-120px;
    width:40px;
    height:40px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.4), 0 0 18px rgba(255,255,255,0.18);
    animation:animateBubble calc(180s / var(--i)) linear infinite; left:calc(var(--i) * 4%); 
}
 /* Bubble shine */ 
 .bubbles span::before{ 
    content:'';
    position:absolute;
    top:6px;
    left:8px;
    width:10px;
    height:10px;
    background:rgba(255,255,255,0.55);
    border-radius:50%; filter:blur(1px); 
}
 /* Different sizes */ 
 .bubbles span:nth-child(3n){
     width:65px;
     height:65px; 
    } 
    .bubbles span:nth-child(5n){
         width:28px;
         height:28px;
         } 
    .bubbles span:nth-child(7n){
         width:85px;
         height:85px; }
/* Floating animation */
 @keyframes animateBubble{ 0%{
     transform: translateY(0) scale(0.5) rotate(0deg); opacity:0;
     } 10%{ opacity:1; } 50%{ opacity:0.9; } 100%{ transform: translateY(-120vh) scale(1.2) rotate(360deg); opacity:0; } }