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


html{
  scroll-behavior:smooth;
}


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


.logo-dot{
  color:#FF5C2A;
}

.nav-link{
  font-weight:500;
  margin:0 12px;
  transition:0.3s;
}

.nav-link:hover{
  color:#FF5C2A;
}

.nav-link.active{
  color:#FF5C2A !important;
}

.contact-btn{
  background:#FF5C2A;
  color:#fff;
  padding:10px 20px;
  border:none;
  transition:0.3s;
}

.contact-btn:hover{
  background:#e04d20;
  transform:translateY(-2px);
}


.offcanvas{
  width:260px;
}

.offcanvas .nav-link{
  padding:12px 0;
  font-size:15px;
}


.contact-hero img{
  width:100%;
  height:420px;
  object-fit:cover;
}


.inquiry-section{
  background:#FFF9F9;
  padding:70px 0;
  animation:fadeUp 1s ease;
}

.inquiry-title{
  font-size:30px;
  font-weight:700;
}

.inquiry-section h6{
  font-weight:700;
  margin-bottom:6px;
}

.inquiry-section p{
  font-size:14px;
  color:#555;
}

.divider{
  margin:40px 0;
}

.contact-text{
  font-weight:600;
  font-size:22px;
}

.contact-text span{
  color:#FF5C2A;
}

.footer{
  background:#050517;
  color:#fff;
  padding-top:70px;
}

.footer-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

.footer-col{
  flex:1;
  min-width:180px;
}

.logo{
  color:#ffd400;
  margin-bottom:15px;
}

.footer-about p{
  font-size:13px;
  color:#FFFFFF;
  width:80%;
  line-height:1.6;
}

.footer-title{
  margin-bottom:20px;
  font-size:18px;
  letter-spacing:1px;
  font-weight:600;
  color:#fff;
  position:relative;
}
.footer-title::after{
  content:"";
  width:0;
  height:2px;
  background:#ffd400;
  position:absolute;
  left:0;
  bottom:-6px;
  transition:0.3s ease;
}

.footer-title:hover::after{
  width:40px;
}


.footer-nav{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-nav a{
  text-decoration:none;
  color:#cfcfcf;
  font-size:13px;
  transition:all 0.3s ease;
  position:relative;
}


.footer-nav a:hover{
  color:#fff;
  padding-left:6px;
}

.footer-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:0;
  height:1px;
  background:#ffd400;
  transition:0.3s;
}

.footer-nav a:hover::after{
  width:100%;
}


.social-links{
  margin-top:20px;
}

.social-links a{
  margin-right:18px;
  font-size:12px;
  color:#cfcfcf;
  text-decoration:none;
  transition:all 0.3s ease;
  display:inline-block;
}


.social-links a:hover{
  color:#ffd400;
  transform:translateY(-3px);
}

.subscribe{
  font-size:12px;
  color:#cfcfcf;
  margin-top:10px;
}


.footer-bottom{
  border-top:1px solid #2a2a40;
  text-align:center;
  padding:20px 0;
  margin-top:50px;
}

.footer-bottom p{
  font-size:13px;
  color:#cfcfcf;
}

.footer-bottom a{
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}


.footer-bottom a:hover{
  color:#ffd400;
  text-decoration:underline;
}






@media (max-width:1200px){

  .contact-hero img{
    height:380px;
  }

  .contact-text{
    font-size:20px;
  }
}

@media (max-width:992px){

  .navbar-collapse{
    text-align:center;
    margin-top:10px;
  }

  .contact-hero img{
    height:320px;
  }

  .inquiry-title{
    font-size:26px;
  }

  .contact-text{
    font-size:19px;
    line-height:1.5;
  }
}

@media (max-width:768px){

  .contact-hero img{
    height:260px;
  }

  .inquiry-section{
    padding:60px 0;
    text-align:center;
  }

  .inquiry-section .row{
    row-gap:20px;
  }

  .inquiry-section h6{
    margin-top:10px;
  }

  .contact-text{
    font-size:17px;
    padding:0 10px;
  }
}

@media (max-width:480px){

  .contact-hero img{
    height:220px;
  }

  .inquiry-title{
    font-size:22px;
  }

  .contact-text{
    font-size:16px;
  }

  .divider{
    margin:30px 0;
  }
}