
/*** Spinner Start ***/
/*** Spinner ***/

:root {
    --bs-secondary: #c90e0e;
   --bs-font-sans-serif: 'Montserrat', sans-serif;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: none;
}

.btn.btn-primary:hover {
background-color: #0d6efd;
}

.btn.btn-secondary {
    color: var(--bs-white);
    border: none;
   
}
.navbar-toggler .fa-bars {
    color: #ffffff !important;
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
}

/*** Navbar Start***/
.navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.logo-wrap {
    max-width:160px;    
    overflow: hidden;  
}
.navbar-logo {
    height: 65px; 
    width: fixed;       
}

.navbar {
    background: #210586 !important; /* biru menu */
    position: relative;
    overflow: visible;
}
.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 340px; /* lebar area logo */
    height: 100%;
    background: #ffffff;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    z-index: 1;
}
.navbar .container,
.navbar .container-fluid {
    position: relative;
    z-index: 2;
}
.navbar-nav .nav-link {
    color: #ffffff !important;
}
.navbar-nav .nav-link.active {
    color: #ff3b00 !important;
}
.navbar-brand {
    z-index: 3;
}

/* Teks menu navbar */
.navbar .nav-link,
.navbar .navbar-brand {
    color: #ffffff !important;
    font-weight: 500;
}

.sticky-top {
    transition: 1s;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    transition: .5s;
    z-index: 99;
}

.navbar .navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 2px solid var(--bs-secondary);
    opacity: 0;
    transition: 0.5s;
    z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
    border-bottom: 0;
    border-right: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
    border-top: 0;
    border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

.nav-bar .navbar-toggler { 
    color: var(--bs-dark);
    box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

.navbar .nav-item .dropdown-menu {
    background: var(--bs-light);
    transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        margin-top: 15% !important;
        transform: rotateX(-75deg);
        transform-origin: 0 0;
        border: 0;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 991px) {
    .navbar .nav-item .dropdown-menu {
        position: relative;
        margin-top: 0;
        transition: 0.5s;
    }

    .navbar .navbar-nav .nav-item::after,
    .navbar .navbar-nav .nav-item::before {
        display: none;
    }

    .navbar .navbar-nav .nav-item:hover::after,
    .navbar .navbar-nav .nav-item:hover::before,
    .navbar .navbar-nav .nav-item.active::after,
    .navbar .navbar-nav .nav-item.active::before {
        display: none;

    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar .navbar-nav .nav-item.nav-link {
        padding: 12px 0;
    }
}
@media (max-width: 991px) {

    .navbar {
        position: relative;
    }

    .navbar::before {
        height: 97.5px; /* tinggi navbar saja */
        z-index: 1;
    }

    .navbar-collapse {
        background: #210586;
        margin-top: 0;
        padding: 30px 20px;
    }

}

.navbar-toggler {
    border: none;
    background-color: #0d6efd;
    padding: 10px;
    width: 45px;
    height: 45px;
    position: relative;
}

.navbar-toggler .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px auto;
    transition: all 0.3s ease;
}


.navbar-toggler:not(.collapsed) .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler:not(.collapsed) .bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
/* NAVBAR TOGGLER */
.navbar-toggler {
    border: none;
    background-color: #210586;
    padding: 10px;
    width: 45px;
    height: 45px;
    position: relative;
    transition: background-color 0.3s ease;
}
.navbar-toggler:active {
    background-color: #1a046b;
}
.navbar-toggler:focus,
.navbar-toggler:focus-visible,
.navbar-toggler:active {
    outline: none;
    box-shadow: none !important;
}

/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 18, 72, 0.7), rgba(0, 18, 72, 0.7)), url(../img/azrina.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 50px 0;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: #ffffff;
}
/*** Single Page Hero Header End ***/

/*** Carousel Start ***/
.carousel .carousel-inner .carousel-item {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

@media (min-width: 992px) {
    .carousel .carousel-inner .carousel-item img {
        height: 100%;
        object-fit: cover;   
    }
}

@media (max-width: 991px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
    }
    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;    
    }
}

@media (max-width: 576px) {
    .carousel-item .carousel-caption h1 {
        font-size: 36px;
    }

    .carousel-item .carousel-caption p.fs-5 {
        font-size: 15px;
    }
}

.carousel .carousel-inner .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.carousel .carousel-indicators {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    z-index: 5;
}

.carousel .carousel-indicators li,
.carousel .carousel-indicators li,
.carousel .carousel-indicators li {
    margin-right: 30px !important;
    width: 10px;
    height: 10px;
    border: 6px solid var(--bs-secondary);
    background: var(--bs-white);
    transition: 0.5s;
}
.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    padding: 10px 12px;   
    background: transparent;
}
.carousel .carousel-control-prev i,
.carousel .carousel-control-next i {
    font-size: 18px;   
}
.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 50px;
}
/*** Carousel End ***/

/*** About Start ***/
.video {
    position: relative;
    height: 200%;
    min-height: 300px;
    background: url(../img/compro.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 90%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.video.border {
    border-radius: 50% 20% / 10% 40%;
}

.about {
    background: linear-gradient(rgba(255, 255, 255, 0.742), rgba(232, 234, 239, 0.884)), url(../img/carousel-2.4.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** About End ***/

/*** order start ***/
.steps-overlay {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.steps-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
     background: linear-gradient(
        45deg,
        #5082ed,
        #210586
        ) !important;
    z-index: 1;
}
.steps-overlay h3,
.steps-overlay h4 {
    color: #ffffff;
}

.steps-overlay h4 {
    font-size: 18px;
    letter-spacing: 0.3px;
}

.steps-overlay .container {
    position: relative;
    z-index: 2;
}
/*** order end ***/

/*** Services Start ***/
.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
  
.service-item:hover img {
    transform: scale(1.2);
}
  
.service-overlay {
    position: absolute;
    padding: 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}
.service-item {
    position: relative;
    overflow: hidden;
    height: 250px; 
}
.services-section {
    background-color: #ffffff; 
}
/*** Services End ***/

/*** Project Start ***/
.project-section {
    padding: 40px 20px;
    background: #ffffff;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.project-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: #0d2a4d;
}

.lihat-project {
    font-size: 16px;
    color: #0d2a4d;
    text-decoration: none;
    transition: 0.3s;
}

.lihat-project:hover {
    color: #d10000;
}

.project-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
@media (min-width: 1200px) {
    .project-card {
        aspect-ratio: 4 / 3;
    }
}


.project-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
}

.project-card:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

/* Swiper spacing */
.projectSwiper .swiper-slide {
    padding: 0;
}


.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #bbb;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #000;
}
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.project-header-two {
  display: flex;
  justify-content: flex-end; 
}

.project-header-two h3 {
  margin: 20px;
}

@media (max-width: 768px) {

    .project-home {
        padding: 40px 10px; 
    }

    .project-home .project-card {
        aspect-ratio: 1 / 1; 
    }

}
/*** Project End ***/

/*** Testimoni Start ***/
.testimonial {
    position: relative;
    margin: 25px 0;
    padding: 50px 0;
    text-align: center;
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/carousel-1.jpg);
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .container {
    max-width: 760px;
}

.about-page .testimonial {
    padding-bottom: 90px;
}

.testimonial .testimonial-slider-nav {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.testimonial .testimonial-slider-nav .slick-slide {
    position: relative;
    opacity: 0;
    transition: .5s;
}

.testimonial .testimonial-slider-nav .slick-active {
    opacity: 1;
    transform: scale(1.3);
}

.testimonial .testimonial-slider-nav .slick-center {
    transform: scale(1.8);
    z-index: 1;
}

.testimonial .testimonial-slider-nav .slick-slide img {
    position: relative;
    display: block;
    margin-top: 37px;
    width: 100%;
    height: auto;
    border-radius: 100px;
}

.testimonial .testimonial-slider {
    position: relative;
    margin-top: 15px;
    padding-top: 50px;
}

.testimonial .testimonial-slider::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 50px;
    top: 0;
    left: calc(50% - 30px);
}

.testimonial .testimonial-slider h3 {
    color: #d91010;
    font-size: 22px;
    font-weight: 700;
}

.testimonial .testimonial-slider h4 {
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .testimonial-slider p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}
/*** Testimoni End ***/

/*** Area Kerja Start ***/
.area-kerja {
  padding: 30px 0;
  background: #ffffff;
  text-align: center;
}

.area-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* LIST KOTA */
.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.area-list li {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.area-list i {
  border: 1px solid #333;
  border-radius: 50%;
  font-size: 12px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MAP */
.map-wrapper {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}


.map-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.map-pin:hover {
  transform: translate(-50%, -100%) scale(1.1);
}

.pin-jakarta {
  left: 31.25%;
  top: 64.06%;
}

.pin-cirebon {
  left: 35.16%;
  top: 65.62%;
}

.pin-tegal {
  left: 37.5%;
  top: 66.4%;
}

.pin-semarang {
  left: 42.18%;
  top: 64.06%;
}

.pin-purwokerto {
  left: 39.06%;
  top: 70.31%;
}

.pin-pemalang {
  left: 39.84%;
  top: 65.62%;
}

.pin-brebes {
  left: 36.71%;
  top: 65.62%;
}


.map-pin::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(13,59,102,0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}


.map-pin::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .area-title {
    font-size: 24px;
  }

  .area-list li {
    font-size: 15px;
  }

  .area-list {
    gap: 15px 20px;
  }
}
/*** Area Kerja End ***/

/*** client start ***/
.client-section {
    background: #ffffff;
    padding: 70px 20px;
}


.container-client {
    max-width: 1300px;
    margin: auto;
}


.client-title {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
    font-size: 28px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    align-items: center;
}

.client-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-item img {
    width: auto;
    max-width: 140px;
    height: auto;
    object-fit: contain;
    transition: 0.3s ease;
}


.client-item img:hover {
    transform: scale(1.08);
}


@media (min-width: 992px) {

    .client-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 70px;
        flex-wrap: wrap;
    }

    .client-item img {
        max-height: 70px;
    }
}
/*** client End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(
        45deg,
        #608bea,
        #210586
        ) !important;
    z-index: 1
    url(../img/carousel-1.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-secondary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
.footer .footer-btn .btn i {
    color: #fff !important;
}

.footer .footer-btn .btn:hover i,
.footer .footer-btn .btn:active i,
.footer .footer-btn .btn:focus i {
    color: #fff !important;
}
.footer .footer-btn .btn i {
    transition: color 0.2s ease;
}
.footer-logo {
    max-width: 260px; 
    height: auto;
    margin-bottom: 6px;
    display: block;
}
.footer-item {
    position: relative;
}

.footer h4 {
    color: #ffffff !important;
}
.footer h4 {
    margin-top: 5px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer a,
.footer p {
    color: #fff !important;
}
.back-to-top {
    display: none !important;
}
.footer a.btn,
.footer .btn-square {
    background-color: #c40000 !important;
    border-color: #c40000 !important;
    color: #fff !important;
}

/* WhatsApp */
.footer a.btn:has(.fa-whatsapp) {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
}

/* TikTok */
.footer a.btn:has(.fa-tiktok) {
   background-color: #1f1f1f !important;
   border-color: #1f1f1f !important;
}

/* Facebook */
.footer a.btn:has(.fa-facebook),
.footer a.btn:has(.fa-facebook-f) {
    background-color: #1877F2 !important;
    border-color: #1877F2 !important;
}

/* Instagram*/
.footer a.btn:has(.fa-instagram) {
    background: linear-gradient(
        45deg,
        #feda75,
        #fa7e1e,
        #d62976,
        #962fbf,
        #4f5bd5
    ) !important;
    border: none !important;
}
/* Threads*/
.footer a.btn:has(.fa-threads) {
    background-color: #1f1f1f !important;
    border-color: #1f1f1f !important;
}

.footer-desc {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #fff !important;
}

.footer .row {
    --bs-gutter-y: 1.5rem;
}

.footer .footer-item a {
    line-height: 28px;
}

/* Hover merah */
.footer a:hover,
.footer a:active,
.footer a:focus {
    color: #c40000 !important;
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {

    .footer {
        padding: 20px 0 15px;
    }

    .footer-logo {
        max-width: 180px;
        height: auto;
        margin-bottom: 10px;
    }

    .footer h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-desc {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer .row {
        --bs-gutter-y: 1rem;
    }

    .footer .col-md-6.col-lg-6.col-xl-3:nth-child(2),
    .footer .col-md-6.col-lg-6.col-xl-3:nth-child(3) {
        width: 50%;
    }

    .footer .col-md-6.col-lg-6.col-xl-3:nth-child(4) {
        width: 100%;
    }
}

/*** Footer End ***/

/*** Floating whatsApp***/
.social-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* bubble */
.chat-label {

    background: #ffffff;
    color: #333;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 6px 15px rgba(0,0,0,.2);

    opacity: 1;
    transform: translateX(10px);
    transition: .4s ease;
    z-index: 2;
}

.chat-label.show {
    opacity: 1;
    transform: translateX(0);
}

/* tombol WA */
.social-btn.whatsapp {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 35px;
    animation: wa-pulse 1.5s infinite;
}

/* pulse */
@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
/*** Floating whatsApp end***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
.copyright {
    padding-top: 30px;
}

/*** copyright end ***/

/*** Tentang Kami Start ***/
.about-header {
    background:  linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../img/slide/s24.jpg') center/cover no-repeat;
    padding: 120px 0;
}
.about-header {
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.box {
    background: rgba(255, 255, 255, 0.15); /* transparan tipis */
    backdrop-filter: blur(10px); /* efek kaca (glass effect) */
    -webkit-backdrop-filter: blur(8px);
    border-radius: 15px;
    color: #fff;
}
.about-header h1,
.about-header p,
.about-header li {
    color: #fff;
}
.about-content {
    background-color: #ffffff;
    padding: 120px 0;
}

/* Title */
.about-title {
    font-size: 38px;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 40px;
}

/* VISI & MISI Label */
.section-label {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0a1f44;
    margin-bottom: 15px;
}

/* Paragraph */
.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}


.misi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.misi-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
}

.misi-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background-color: #0a1f44;
    border-radius: 50%;
}

.about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

.about-image:hover {
    transform: translateY(-6px);
}

.image-back {
    position: absolute;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: rgba(10,31,68,0.08);
    top: 25px;
    left: 25px;
    z-index: 1;
    border-radius: 12px;
}
/*** Tentang Kami End ***/

/*** Office Start ***/
.office-section {
  background: #f1f1f1;
  padding: 50px 0;
}

.office-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 60px;
  background: #ececec;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.office-left h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #0c2c5a;
}

.office-label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #555;
}

.office-left p {
  margin: 0;
  line-height: 1.6;
  color: #666;
}

.office-btn {
  background: #c40000;
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.office-btn:hover {
  background: #a00000;
}

@media (max-width: 768px) {
  .office-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

  .office-btn {
    width: 100%;
    text-align: center;
  }
}

.office-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 320px;
}


.contact-btn {
  padding: 18px 30px;
  text-decoration: none;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  transition: 0.3s ease;
}

/* WHATSAPP */
.contact-btn.whatsapp {
  background: #210586;
 
}

.contact-btn.whatsapp:hover {
  background: #0052c4;
}

/* PHONE */
.contact-btn.phone {
  background: #b70707;
}

.contact-btn.phone:hover {
  background: #f01418;
}
@media (max-width: 768px) {
  .office-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

  .office-contact {
    width: 100%;
  }

  .contact-btn {
    width: 100%;
  }
}
/*** Office End ***/

/*** Proses Start ***/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .row {
    position: relative;
}

.faqs #accordion-1 {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }
    
    .faqs #accordion-1,
    .faqs #accordion-2 {
        padding: 0;
    }
    
    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    padding: 10px 25px;
    width: 100%;
    color: #121518;
    font-size: 16px;
    line-height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .5s;
}

.faqs .card-header [data-bs-toggle="collapse"][aria-expanded="true"] {
    background: #f92626;
}

.faqs .card-header [data-bs-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #ec0d0d;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-header [data-bs-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #030f27;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-body {
    padding: 20px 25px;
    font-size: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
}
/*** Proses End ***/

/*** Contact Start ***/
.contact .contact-map {
    position: relative;
    overflow: hidden; 
    padding: 30px;
    z-index: 1;
}

.contact .contact-map iframe {
    width: 100%;
    height: 550px;  
    border: 0;
    display: block;
}

.contact .contact-map::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    left: 0;
    bottom: 0;
    background: var(--bs-primary);
    z-index: -1;
}

.contact .contact-map::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    top: 0;
    right: 0;
    background: var(--bs-secondary);
    z-index: -1;
}

.contact-link {
    color: #6c757d; 
    font-weight: 600;
    text-decoration: none;
    transition: 
        color 0.3s ease,
        transform 0.25s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #dc3545;
    transform: translateX(6px);
}

.contact-link:active {
    color: #b02a37; 
    transform: translateX(2px) scale(0.98);
}

.contact-icon {
    color: #dc3545;
    font-size: 20px;
    transition: transform 0.25s ease;
}


.contact-link:hover + .contact-icon,
.contact-link:hover .contact-icon {
    transform: scale(1.15);
}

@media (max-width: 576px) {

    .contact .contact-map {
        padding: 12px; 
    }

    .contact .contact-map iframe {
        height: 70vh;  
    }

    .contact .contact-map::before,
    .contact .contact-map::after {
        width: 70%;
        height: 70%;
    }
}
/*** Contact End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-secondary);
}

.blog .blog-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog .blog-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog .btn {
    margin-top: auto;
}

.blog .fa-calendar-check,
.blog .fa-user {
    color: #cf1616 !important;
}

.blog .btn-secondary {
    background-color: #cf1616 !important;
    border-color: #cf1616 !important;
}

.blog .btn-secondary:hover {
    background-color: #cf1616 !important;
    border-color: #cf1616 !important;
}

.blog .btn-secondary {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important; 
}
/*** Blog End ***/

/*** Legalitas Start ***/
.legalitas {
  padding: 80px 20px;
  background: #f8f9fb;
  position: relative;
}

.legal-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 40px;
}

@media (min-width: 1200px) {
  .legal-grid {
    grid-template-columns: repeat(2, 1fr); /* tetap 2 */
    gap: 60px; /* lebih lega */
  }
}

.legal-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  cursor: pointer;
}

.legal-card img {
  width: 100%;
  height: 600px; 
  object-fit: contain; 
  border-radius: 10px;
  transition: 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.legal-card:hover img {
  transform: scale(1.03);
}
/*** Legalitas End ***/

/*** Jasa Kami Start ***/
.jasa-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.jasa-title {
    font-size: 42px;
    font-weight: 700;
    color: #0f2747;
    margin-bottom: 20px;
}

.jasa-price {
    font-weight: 600;
    margin-bottom: 15px;
}

.jasa-subtitle {
    font-weight: 600;
    margin-bottom: 15px;
}

.jasa-desc {
    line-height: 1.8;
    margin-bottom: 20px;
}

.jasa-image-col {
    text-align: center;
    margin-bottom: 30px;
}

.jasa-image-col {
    position: relative;
    padding: 20px;
}

.jasa-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e9ecef;
    border-radius: 30px;
    z-index: 1;
    transition: 0.6s ease;
}

.jasa-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.6s ease;
}

.jasa-image-col:hover .jasa-image {
    transform: scale(1.04);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.jasa-image-col:hover .jasa-image-bg {
    transform: translate(12px, 12px);
}
/*** Jasa Kami End ***/

body, h1, h2, h3, h4, h5, h6 {
   font-family: 'Open Sans', sans-serif !important;
}
.navbar,
.navbar a,
.navbar-brand,
.navbar-nav .nav-link {
   font-family: 'Montserrat', sans-serif !important;
}
