/* ============================= */
/* FILE : style.css */
/* PROJECT : FRIOXV3 */
/* ============================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#0d1117;
  color:#ffffff;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ============================= */
/* HEADER */
/* ============================= */

.header{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  background:rgba(10,10,10,0.6);
  backdrop-filter:blur(10px);
}

.navbar{
  height:80px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  display:flex;
  align-items:center;
  height:70px; /* tinggi navbar */
}

.logo h2{
  color:#ffd000;
  font-size:30px;
  font-weight:800;
}

.logo img{
  height:200px;
  width:auto;
  align-items: center;
  display:block;
  object-fit:contain;
}

/* MOBILE */
@media(max-width:768px) {

  .logo img {
    width: 180px;
    height: auto;
  }

}

.nav-menu{
  display:flex;
  position: absolute;
  gap:35px;
  left: 50%;
  transform:translateX(-50%);
}

.nav-menu a{
  color:#ffffff;
  font-size:15px;
  transition:0.3s;
}

.nav-menu a:hover{
  color:#ffd000;
}


.nav-btn {
  display: block;
  margin-left: auto;
}


.btn-primary{
  background:#ffd000;
  color:#000;
  padding:14px 28px;
  border-radius:8px;
  font-weight:600;
  transition:0.3s;
  display:inline-block;
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-secondary{
  border:1px solid #ffffff50;
  color:#ffffff;
  padding:14px 28px;
  border-radius:8px;
  margin-left:15px;
  transition:0.3s;
}

.btn-secondary:hover{
  background:#ffffff10;
}

/* HAMBURGER */
.hamburger {
  
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: 0.3s;
}

/* ============================= */
/* HERO */
/* ============================= */

.hero{
  /*height:100vh;*/
  min-height:100vh;
  padding:140px 0 100px;
  background:url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop')
  center/cover;
  position:relative;
  display:flex;
  align-items:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.4)
  );
}

.hero-content{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:50px;
}

.hero-left{
  flex:1;
}

.hero-tag{
  display:inline-block;
  background:#ffd000;
  color:#000;
  padding:8px 16px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
  margin-bottom:25px;
}

.hero-left h1{

  font-size:clamp(42px, 6vw, 82px);
  line-height:1.05;
  margin-bottom:25px;
  max-width:900px;
}

.hero-left p{
  color:#cccccc;
  font-size:18px;
  line-height:1.8;
  max-width:650px;
  margin-bottom:35px;
}

.hero-buttons{
  margin-bottom:50px;
}

.hero-info{
  display:flex;
  gap:40px;
}

.info-box h3{
  color:#ffd000;
  font-size:36px;
}

.info-box span{
  color:#bbbbbb;
}

/* ============================= */
/* HERO CARD */
/* ============================= */

.hero-right{
  width:380px;
}

.hero-card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(15px);
  padding:40px;
  border-radius:20px;
}

.hero-card h3{
  font-size:28px;
  margin-bottom:15px;
}

.hero-card p{
  color:#cccccc;
  line-height:1.8;
}

.hero-card-line{
  width:100%;
  height:1px;
  background:#ffffff20;
  margin:25px 0;
}

.hero-card ul{
  list-style:none;
}

.hero-card li{
  margin-bottom:15px;
  color:#dddddd;
}

/* ============================= */
/* TRUSTED */
/* ============================= */

.trusted{
  padding:60px 0;
  background:#111827;
}

.trusted-text{
  text-align:center;
  color:#cccccc;
  margin-bottom:40px;
}

.trusted-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.trusted-item{
  background:#1f2937;
  height:80px;
  border-radius:12px;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#888;
  font-weight:600;
}

/* ============================= */
/* ABOUT */
/* ============================= */

.about{
  padding:40px 0;
}

.about-wrapper{
  display:flex;
  align-items:center;
  gap:30px;
}

.about-image{
  flex:1;
  width:100%;
  min-width:0;
}

.image-box{
  width:100%;
  min-height:500px;
  background:url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1200&auto=format&fit=crop')
  center/cover no-repeat;
  border-radius:25px;
  display:block;
}

.about-content{
  flex:1;
}

.section-tag{
  color:#ffd000;
  font-weight:600;
  letter-spacing:1px;
}

.about-content h2{
  font-size:48px;
  line-height:1.2;
  margin:20px 0;
}

.about-content p{
  color:#bbbbbb;
  line-height:1.8;
  margin-bottom:30px;
}

.about-list{
  margin-bottom:40px;
}

.about-item{
  margin-bottom:18px;
  color:#dddddd;
}

/* ============================= */
/* SERVICES */
/* ============================= */

.services{
  padding:40px 0;
  background:#111827;
}

.section-header{
  text-align:center;
  margin-bottom:30px;
}

.section-header h2{
  font-size:48px;
  margin-top:15px;
}

/* GRID */

.services-grid{
  display:grid;

  grid-template-columns:repeat(3,minmax(0,1fr));

  gap:30px;

  width:100%;
}

/* CARD */

.service-card{
  background:#1b2431;

  border-radius:24px;

  padding:28px;

  transition:0.4s;

  border:1px solid rgba(255,255,255,0.05);

  overflow:hidden;
}

.service-card:hover{
  transform:translateY(-10px);

  border-color:#ffd000;
}

/* IMAGE */

.service-image{
  width:100%;

  height:240px;

  overflow:hidden;

  border-radius:18px;

  margin-bottom:28px;
}

.service-image img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.5s;
}

.service-card:hover .service-image img{
  transform:scale(1.08);
}

/* CONTENT */

.service-content h3{
  font-size:34px;

  line-height:1.2;

  margin-bottom:20px;

  color:#fff;
}

.service-content p{
  color:#c8c8c8;

  line-height:1.8;

  font-size:17px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:992px){

  .services-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .services-grid{
    grid-template-columns:1fr;
  }

}

/* ============================= */
/* CTA */
/* ============================= */

.cta{
  padding:30px 0;
}

.cta p{
  padding:30px 0;
  margin-left: 80px;
}


.cta-wrapper{
  background:linear-gradient(
    135deg,
    #ffd000,
    #ffb300
  );
  border-radius:30px;
  padding:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.cta-wrapper h2{
  color:#000;
  font-size:35px;
  margin-bottom:15px;
}

.cta-wrapper p{
  color:#222;
  margin-left: 0px;
}

.cta-wrapper .btn-primary{
  background:#000;
  color:#fff;
}


@media(max-width:768px){

  .cta p{
  padding:5px 0;
  margin-left: 30px; 
}

.cta-wrapper p {
    color: #222;
    margin-left: 0px;
}

}


/* ============================= */
/* FOOTER */
/* ============================= */

.footer{
  background:#0a0f14;
  padding:80px 0;
}

.footer-wrapper{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:50px;
}

.footer h2{
  color:#ffd000;
  margin-bottom:20px;
}

.footer p{
  color:#aaaaaa;
  line-height:1.8;
}

.footer h4{
  margin-bottom:20px;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links a{
  color:#aaaaaa;
  margin-bottom:12px;
}

.footer-links a:hover{
  color:#ffd000;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:992px){

  .hero-content,
  .about-wrapper,
  .cta-wrapper{
    flex-direction:column;
  }

  .services-grid{
    grid-template-columns:1fr 1fr;
  }

  .trusted-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-wrapper{
    grid-template-columns:1fr;
  }

  .hero-left h1{
    font-size:48px;
  }

  .nav-btn{
    display:block;
    margin-left:auto;
    margin-right:15px;
  }


}

@media(max-width:768px){

  .hamburger {
    display: flex;
  }

  .nav-btn{
    display:block;
    margin-left:auto;
    margin-right:15px;
  }

  .nav-btn .btn-primary{
    padding:10px 18px;
    font-size:14px;
  }

  .hamburger{
  display:flex;
  flex-shrink:0;
  }

  .nav-menu{
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10,10,10,0.95);
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    text-align: center;
    transform: translateY(-150%);
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
  }

  .nav-menu.active {
  transform: translateY(0);
  opacity: 1;

  color:#ffd000 !important ;
  border-top:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.nav-menu a {
  padding: 15px 0;
  display: block;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero{
    height:auto;
    padding:140px 0 100px;
  }

  .hero-left h1{
    font-size:40px;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .hero-info{
    flex-direction:column;
    gap:20px;
  }

  .about-content h2,
  .section-header h2,
  .cta-wrapper h2{
    font-size:34px;
  }

  .hero-right{
    width:100%;
  }

  .cta {
    padding: 40px 0;
  }

  .footer {
    padding: 30px 0;
  }
}

/* ============================= */
/* CONTACT PAGE */
/* ============================= */

.contact-hero{

  min-height:65vh;

  background:url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop')
  center/cover no-repeat;

  position:relative;

  display:flex;

  align-items:center;

  justify-content:center;

  text-align:center;

  padding-top:120px;
}

.contact-overlay{

  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.72);
}

.contact-hero-content{

  position:relative;
  z-index:2;
  max-width:950px;
  margin-top:40px;
}

.contact-hero-content h1{

  font-size:62px;

  line-height:1.1;

  margin:20px 0;
}

.contact-hero-content p{

  color:#cccccc;

  font-size:18px;

  line-height:1.8;
}

/* ============================= */
/* CONTACT SECTION */
/* ============================= */

.contact-section{

  padding:120px 0;

  background:#0d1117;
}

.contact-wrapper{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:60px;

  align-items:start;
}

/* LEFT */

.contact-info h2{

  font-size:46px;

  line-height:1.2;

  margin:20px 0;
}

.contact-info p{

  color:#bbbbbb;

  line-height:1.8;
}

.contact-card{

  margin-top:30px;

  padding:25px;

  background:#1b2431;

  border-radius:18px;

  border:1px solid rgba(255,255,255,0.05);
}

.contact-card h4{

  color:#ffd000;

  margin-bottom:10px;
}

/* RIGHT */

.contact-form-box{

  background:#1b2431;

  padding:45px;

  border-radius:24px;

  border:1px solid rgba(255,255,255,0.05);
}

.input-group{

  margin-bottom:25px;
}

.input-group label{

  display:block;

  margin-bottom:12px;

  font-weight:500;
}

.input-group input,
.input-group textarea{

  width:100%;

  background:#111827;

  border:1px solid rgba(255,255,255,0.08);

  padding:18px;

  border-radius:12px;

  color:#fff;

  font-family:'Poppins', sans-serif;

  font-size:15px;

  outline:none;

  transition:0.3s;
}

.input-group input:focus,
.input-group textarea:focus{

  border-color:#ffd000;
}

.form-group select{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:10px;
    background:#111827;
    outline:none;
    color:#fff;
    font-family:'Poppins', sans-serif;
    font-size:15px;
}

.form-group select:focus{
    border-color:#f4b400; /* sesuaikan warna accent FRIOX */
}

.submit-btn{

  width:100%;

  border:none;

  cursor:pointer;

  font-size:16px;
}

/* ACTIVE NAV */

.active-nav{

  color:#ffd000 !important;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:992px){
  .contact-wrapper{

    grid-template-columns:1fr;
  }

  .contact-hero-content h1{

    font-size:48px;
  }

}

@media(max-width:768px){

  .contact-hero{

    height:auto;

    padding:140px 0 100px;
  }

  .contact-hero-content h1{

    font-size:38px;
  }

  .contact-info h2{

    font-size:34px;
  }

  .contact-form-box{

    padding:30px 24px;
  }

  .contact-section {

    padding:40px 0;
  }

}

/* ============================= */
/* GOOGLE MAP */
/* ============================= */

.map-box{

  margin-top:24px;

  border-radius:18px;

  overflow:hidden;

  border:1px solid rgba(255,255,255,0.08);
}

.map-box iframe{

  display:block;

}

/* MAP BUTTON */

.map-button{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  margin-top:18px;

  width:100%;

  background:#ffd000;

  color:#000;

  padding:14px 20px;

  border-radius:12px;

  font-weight:600;

  transition:0.3s;
}

.map-button:hover{

  transform:translateY(-3px);

  background:#ffcc00;
}


/* ============================= */
/* PROJECTS */
/* ============================= */

.projects{

  padding:40px 0;

  background:#0d1117;
}

/*
.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:60px;
}*/

.projects-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:30px;
}

.project-card{

  background:#1b2431;
  border-radius:24px;
  overflow:hidden;
  transition:0.4s;
  border:1px solid rgba(255,255,255,0.05);
  width:100%;
  max-width:380px;
  flex:1 1 300px;
}

.project-card:hover{

  transform:translateY(-10px);

  border-color:#ffd000;
}

.project-image{

  height:260px;

  overflow:hidden;
}

.project-image img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.5s;
}

.project-card:hover img{

  transform:scale(1.08);
}

.project-content{

  padding:30px;
}

.project-content span{

  color:#ffd000;

  font-size:14px;

  font-weight:600;

  letter-spacing:1px;
}

.project-content h3{

  font-size:28px;

  line-height:1.3;

  margin:18px 0;
}

.project-content p{

  color:#cfcfcf;

  line-height:1.8;
}

.projects-more{

  text-align:center;

  margin-top:60px;
}

/* ============================= */
/* MEDIA SECTION */
/* ============================= */

.youtube-section{
  padding:40px 0;
  background:#111827;
}

.youtube-grid{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:30px;
  margin-top:60px;
}

.youtube-card{
  width:100%;
  max-width:600px;

  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.05);
  background:#000;


}

.youtube-card video{
  width:100%;
  height:auto;
  display:block;
  border-radius:24px;
}

.project-video{
  width:100%;
  height:auto;
  display:block;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:992px){

  .youtube-grid{
    gap:20px;
  }

  .youtube-card{
    max-width:100%;
    border-radius:16px;
  }

  .youtube-card video{
    border-radius:16px;
  }

}