/********** Template CSS **********/
:root {
    --primary: #003399; /* Biru tua Sidrap */
    --secondary: #FFD700; /* Kuning emas */
    --success: #34AD54; /* Hijau */
    --light: #f4f8fb; /* Abu-abu muda */
    --dark: #002366; /* Biru gelap untuk footer */
    --white: #fff;
    --shadow: 0 4px 24px rgba(0,0,0,0.07);
}

html, body {
  width: 100vw !important;
  min-width: 100vw !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
}

/*** Optimized Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#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-hidden {
    display: none !important;
}

/*** Optimized Typography ***/
h1, h2, .fw-bold {
    font-weight: 800 !important;
}

h3, h4, .fw-semi-bold {
    font-weight: 700 !important;
}

h5, h6, .fw-medium {
    font-weight: 600 !important;
}

/*** Optimized Buttons ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .3s ease;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
	
    padding-right: 0;
    text-align: center;
}


.bg-green {
	background-color: var(--dark);
}
/*** Navbar ***/


.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: var(--white);
	font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 2px solid transparent;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
	top: 0px;
    color: var(--white);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--secondary);
    border-bottom: 2px solid var(--secondary);
    background: transparent;
}


.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
	
}


.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--white);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }

    .dropdown-menu.show {
        display: block !important;
        z-index: 9999 !important;
    }

    .navbar-collapse {
        position: static !important;
        width: 100% !important;
        max-width: 100vw !important;
        background: inherit !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        box-shadow: none !important;
        height: auto !important;
        min-height: unset !important;
        z-index: 1 !important;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(9, 30, 62, .7);*/
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,51,153,0.13);
    opacity: 0.95;
    transition: background 0.18s, box-shadow 0.18s, opacity 0.18s;
    z-index: 2;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #003399;
    background-size: 60% 60%;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    box-shadow: none;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #FFD700 !important;
    box-shadow: 0 4px 18px rgba(0,51,153,0.18);
    opacity: 1;
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
    outline: 2px solid #003399;
    opacity: 1;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}



/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/hdr2.png) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

#btn-izin-online {
  border-radius: 15px;
  background: #f2d37e;
  padding: 5px;
  height: 85px;
  box-shadow: 2px 2px #f0d99c;
}

#btn-izin-online1 {
  border-radius: 15px;
  background: #97c99e;
  padding: 5px;
  height: 85px;
  box-shadow: 2px 2px #c1d6c4;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu>a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #fff;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

/* Shape Hexagon */



#hexGrid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  font-family: sans-serif;
  list-style-type: none;
}

.hex {
  position: relative;
  visibility:hidden;
  outline:1px solid transparent; /* fix for jagged edges in FF on hover transition */
  transition: all 0.5s;
  backface-visibility: hidden;
  will-change: transform;
  transition: all 0.5s;
}
.hex::after{
  content:'';
  display:block;
  padding-bottom: 86.602%;  /* =  100 / tan(60) * 1.5 */
}
.hexIn{
  position: absolute;
  width:96%;
  padding-bottom: 110.851%; /* =  width / sin(60) */
  margin: 2%;
  overflow: hidden;
  visibility: hidden;
  outline:1px solid transparent; /* fix for jagged edges in FF on hover transition */
  -webkit-transform: rotate3d(0,0,1,-60deg) skewY(30deg);
      -ms-transform: rotate3d(0,0,1,-60deg) skewY(30deg);
          transform: rotate3d(0,0,1,-60deg) skewY(30deg);
    transition: all 0.5s;
}
.hexIn * {
  position: absolute;
  visibility: visible;
  outline:1px solid transparent; /* fix for jagged edges in FF on hover transition */
}
.hexLink {
    display:block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    overflow: hidden;
    -webkit-transform: skewY(-30deg) rotate3d(0,0,1,60deg);
        -ms-transform: skewY(-30deg) rotate3d(0,0,1,60deg);
            transform: skewY(-30deg) rotate3d(0,0,1,60deg);
}




/*** HEX CONTENT **********************************************************************/
.hex img {
  left: -100%;
  right: -60%;
  width: auto;
  height: 100%;
  margin: 0 auto;
  text-transform: capitalize;
  text-align: center;
  bottom: 30%;
  padding-top:70%;
  font-size: 1.5em;
}

.hex h1, .hex p {
  width: 100%;
  padding: 5%;
  box-sizing:border-box;
  font-weight: 300;
  opacity: 0;
}

#demo1 {
  color: #F5CE95;
  text-transform: capitalize;
    text-align: center;
  bottom: 50%;
  padding-top:50%;
  font-size: 1.5em;
  z-index: 1;
}
.hex h1:before, .hex h1:after {
  display: inline-block;
  margin: 0 0.5em;
  width: 0.25em;
  height: 0.03em;
  background: #ffffff;
  content: '';
  vertical-align: middle;
  transition: all 0.3s;
  text-align:center;
}

.hex h5 {
  display: inline-block;
  transition: all 0.3s;
  text-align:right;
}

#demo2 {
top: 50%;
text-align: center;
text-transform: uppercase;
    
}

.img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
-webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.img:before, .img:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  opacity: 0;
  transition: opacity 0.5s;
}
.img:before {
  background: rgba(22, 103, 137, 0.3)
}
.img:after {
  background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.5), transparent);
}

/*** HOVER EFFECT  **********************************************************************/



.hexLink:hover h1, .hexLink:focus h1,
.hexLink:hover p, .hexLink:focus p{
opacity:1;
transition: 0.8s;
}


.hexIn:hover .img:before,
.hexIn:hover .img:after,
.hexIn:hover .hexLink {
  opacity: 1;
}


/*** HEXAGON SIZING AND EVEN ROW INDENTATION *****************************************************************/
@media (min-width:1201px) { /* <- 5-4  hexagons per row */
  #hexGrid{
    padding-bottom: 6.4%
  }
  .hex {
    width: 25%; /* = 100 / 5 */
  }
  .hex:nth-child(9n+5){ /* first hexagon of even rows */
    margin-left:12.5%;  /* = width of .hex / 2  to indent even rows */
  }
  .gapheader {
		height: 120px;
	}
	
	#lgheader {
		width: 250px;
	}
  
}

@media (max-width: 1200px) and (min-width:901px) { /* <- 4-3  hexagons per row */
  #hexGrid{
    padding-bottom: 5.5%;
    font-size: 13px;
  }
  .hex {
    width: 25%; /* = 100 / 4 */
  }
  .hex:nth-child(7n+4){ /* first hexagon of even rows */
    margin-left:12.5%;  /* = width of .hex / 2  to indent even rows */
  }
  .detail-berita {
	  font-size: 20px;
	}
	
	#lgheader {
		width: 350px;
	}
	.gapheader {
		height: 20px;
	}

}

@media (max-width: 900px) and (min-width:601px) { /* <- 3-2  hexagons per row */
  #hexGrid{
    padding-bottom: 7.4%;
    font-size: 14px;
  }
  .hex {
    width: 33.333%; /* = 100 / 3 */
  }
  .hex:nth-child(5n+3){ /* first hexagon of even rows */
    margin-left:16.666%;  /* = width of .hex / 2  to indent even rows */
  }
  
  .detail-berita {
	  font-size: 20px;
  }
	#lgheader {
		width: 350px;
	}
	
	.gapheader {
		height: 20px;
	}
}

@media (max-width: 600px) { /* <- 2-1  hexagons per row */
  #hexGrid{
    padding-bottom: 11.2%;
    font-size: 12px;
  }
  .hex {
    width: 50%; /* = 100 / 3 */
  }
  .hex:nth-child(3n+3){ /* first hexagon of even rows */
    margin-left:25%;  /* = width of .hex / 2  to indent even rows */
  }
  .detail-berita {
	  font-size: 20px;
  }
	#lgheader {
		width: 350px;
	}
	
	.gapheader {
		height: 20px;
	}
}

@media (max-width: 400px) {
    #hexGrid {
        font-size: 8px;
    }
	.detail-berita {
	  font-size: 20px;
	}
	#lgheader {
		width: 350px;
	}
	
	.gapheader {
		height: 20px;
	}
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu>a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #fff;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

/* Navbar */
.navbar {
    background: var(--primary) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Button */
.btn-primary, .btn-lg-square {
    background: var(--primary) !important;
    color: var(--white);
    border-radius: 8px;
    font-weight: 700;
    border: none;
    transition: background 0.2s, color 0.2s;
}
.btn-primary:hover, .btn-lg-square:hover {
    background: var(--secondary) !important;
    color: var(--primary) !important;
}

/* Card & Content */
.card, .bg-white.p-4 {
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: none;
    background: var(--white);
}

/* Footer */
.container-fluid.bg-dark, .container-fluid[style*='background: #061429;'] {
    background: var(--dark) !important;
    color: var(--white) !important;
}
.footer-about, .footer-about .bg-primary {
    background: var(--dark) !important;
    color: var(--white) !important;
    border-radius: 12px;
}
.footer-about img {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

/* Input & Modal */
.input-group .form-control {
    border-radius: 8px 0 0 8px;
    border: 2px solid var(--primary);
    background: var(--white);
}
.input-group .btn {
    border-radius: 0 8px 8px 0;
    background: var(--primary);
    color: var(--white);
}
.input-group .btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* Back to Top */
.back-to-top {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.back-to-top:hover {
    background: var(--secondary) !important;
    color: var(--primary) !important;
}

/* Badge, accent, etc */
.badge-success {
    background: var(--success);
    color: var(--white);
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .navbar-brand img { max-height: 48px; }
    .footer-about { margin-bottom: 24px; }
}

/* ====== CARD LAYANAN PUBLIK MODERN ====== */
.card-layanan {
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(0,51,153,0.08);
  border: none;
  background: linear-gradient(135deg, #f4f8fb 60%, #eaf0fa 100%);
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.card-layanan:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,51,153,0.16);
}
.card-layanan .icon-layanan {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: none;
  padding: 0;
  transition: none;
}
.card-layanan .icon-layanan img {
  width: 90px;
  height: 90px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: none;
  filter: none;
}
.card-layanan:hover .icon-layanan {
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 4px 18px rgba(0,51,153,0.13);
}
.card-layanan:hover .icon-layanan img {
  transform: scale(1.10) rotate(-2deg);
  filter: drop-shadow(0 6px 18px rgba(0,51,153,0.18));
}
.card-layanan .judul-layanan {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.13rem;
  margin-bottom: 0.5rem;
}
.card-layanan .desc-layanan {
  color: #444;
  font-size: 1.01rem;
  min-height: 48px;
  max-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1rem;
}
.card-layanan .btn-layanan {
  background: linear-gradient(90deg, var(--primary) 60%, var(--secondary) 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(0,51,153,0.10);
}
.card-layanan .btn-layanan:hover {
  background: linear-gradient(90deg, var(--secondary) 60%, var(--primary) 100%);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,51,153,0.13);
}
/* Variasi warna card */
.card-layanan.bg-biru {
  background: linear-gradient(135deg, #e3eaff 60%, #f4f8fb 100%);
}
.card-layanan.bg-kuning {
  background: linear-gradient(135deg, #fffbe6 60%, #fff 100%);
}
.card-layanan.bg-hijau {
  background: linear-gradient(135deg, #eaffea 60%, #f4fbf4 100%);
}
.card-layanan.bg-pink {
  background: linear-gradient(135deg, #ffeaf6 60%, #fbf4fa 100%);
}
