@import url('https://fonts.googleapis.com/css2?family=Koh+Santepheap:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html {
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #f5f5f5;
    box-sizing: border-box;
    margin: 0;
    overflow-x: hidden; 
    width: 100%;
    padding-top: 132px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.banner-image {
    display: none;
    width: 100%
}

img {
    vertical-align: middle;
}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

@media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
}

/* Header */
.layanan__header {
    background: #143369;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 8px 0px 8px 0px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    transition: all 0.3s ease;
}

.layanan__header img {
    width: 200px;
}

.layanan__header--socialmedia {
    display: flex;
    gap: 12px;
    color: #f5f5f5;
    font-size: 16px;
}

.layanan__header--socialmedia a:link {
    color: #f5f5f5;
    background-color: transparent;
    text-decoration: none;
}

.layanan__header--language {
    display: flex;
    gap: 12px;
    color: #f5f5f5;
    font-size: 16px;
}

.layanan__header--language a:link {
    color: #f5f5f5;
    background-color: transparent;
    text-decoration: none;
}

/* Navbar */
.layanan__nav {
    background-color: #b30202;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.layanan__navContainer {
    width: 100%;
    max-width: 1400px;
    padding: 16px 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.layanan__navBrand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.layanan__navLogo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.layanan__navTitle {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.layanan__navTitleMain {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.layanan__navTitleSub {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.layanan__navLink {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 32px;
    flex: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.layanan__navLinkItem {
    position: relative;
}

.layanan__navLinkItem a {
    font-size: 16px;
    font-weight: 600;
    color: #f5f5f5;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.layanan__navLinkItem a::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
    transition: width 0.3s ease;
}

.layanan__navLinkItem a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.layanan__navLinkItem a:hover::before {
    width: 70%;
}

.layanan__navLinkItem.active a {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 700;
}

.layanan__navLinkItem.active a::before {
    width: 70%;
}

.layanan__navLinkItemDropdown {
    position: relative;
    display: inline-block;
}

.layanan__navLinkItemDropdownButton {
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 600;
    font-family: "Nunito Sans", sans-serif;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.layanan__navLinkItemDropdownButton .dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.layanan__navLinkItemDropdownButton:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.layanan__navLinkItemDropdownButton.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 700;
}

.layanan__navLinkItemDropdown:hover .layanan__navLinkItemDropdownButton .dropdown-icon {
    transform: rotate(180deg);
}

.layanan__navLinkItemDropdownContent {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 12px;
    min-width: 240px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 1001;
    overflow: hidden;
    animation: dropdownFadeIn 0.3s ease;
    padding: 8px;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.layanan__navLinkItemDropdownContent::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

.dropdown-header {
    padding: 12px 16px 8px;
    margin-bottom: 4px;
}

.dropdown-title {
    font-size: 12px;
    font-weight: 700;
    color: #40263c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-divider {
    height: 2px;
    background: linear-gradient(90deg, #d29bc2 0%, transparent 100%);
    margin-top: 8px;
    border-radius: 2px;
}

.layanan__navLinkItemDropdownContent a {
    color: #321d2f !important;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.layanan__navLinkItemDropdownContent a i {
    font-size: 16px;
    color: #40263c;
    transition: all 0.3s ease;
    width: 20px;
    text-align: center;
}

.layanan__navLinkItemDropdownContent a span {
    flex: 1;
}

.layanan__navLinkItemDropdownContent a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #d29bc2 0%, #40263c 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.layanan__navLinkItemDropdownContent a:hover {
    background: linear-gradient(135deg, rgba(210, 155, 194, 0.1) 0%, rgba(64, 38, 60, 0.05) 100%);
    padding-left: 20px;
    color: #40263c !important;
}

.layanan__navLinkItemDropdownContent a:hover::before {
    transform: scaleY(1);
}

.layanan__navLinkItemDropdownContent a:hover i {
    color: #d29bc2;
    transform: translateX(4px);
}

.layanan__navLinkItemDropdownContent a.active {
    background: linear-gradient(135deg, rgba(210, 155, 194, 0.15) 0%, rgba(64, 38, 60, 0.08) 100%);
    color: #40263c !important;
    font-weight: 700;
    padding-left: 20px;
}

.layanan__navLinkItemDropdownContent a.active::before {
    transform: scaleY(1);
}

.layanan__navLinkItemDropdownContent a.active i {
    color: #d29bc2;
}

.layanan__navLinkItemDropdown:hover .layanan__navLinkItemDropdownContent {
    display: block;
}

.layanan__navLangDropdown {
    background-color: #f5f5f5;
    padding: 0.6% 1.2%;
    border-radius: 34px;
}

.layanan__navLangDropdownButton {
    color: #b30202;
    font-size: 16px;
    padding: 0.6% 1.2%;
    border-radius: 34px;
    font-family: "Nunito Sans", sans-serif;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.layanan__navLangItemDropdownIcon {
    width: 20px;
}

.layanan__navLangDropdownIcon {
    width: 16px;
}

.layanan__navLangDropdownContent {
    display: none;
    position: absolute;
    background-color: #f5f5f5;
    margin-left: -5vw;
    border-radius: 4px;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.layanan__navLangDropdownContent a {
    color: #b30202 !important;
    padding: 20px;
    text-decoration: none;
    display: block;
    font-size: 16px;
}

.layanan__navLangDropdownContent a:hover {
    background-color: #bdbdbd;
    border-radius: 4px;
}

.layanan__navLangDropdown:hover .layanan__navLangDropdownContent {
    display: block;
}

.layanan__navLangName {
    font-size: 12px;
}

.layanan__navLangDropdownIcon {
    max-width: 8px;
}

/* Breadcrumbs */
.layanan__breadcrumbs--wrapper {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.layanan__breadcrumbs--image {
    display: flex;
    height: 100%;
    position: relative;
    text-align: center;
    color: white;
}

.layanan__breadcrumbs--image img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.layanan__breadcrumbs--overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 38, 60, 0.7) 0%, rgba(210, 155, 194, 0.5) 100%);
    z-index: 1;
}

.layanan__breadcrumbs--gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.layanan__breadcrumbs--decorative-element {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

.layanan__breadcrumbs--decorative-element.element-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(210, 155, 194, 0.2) 0%, transparent 70%);
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.layanan__breadcrumbs--decorative-element.element-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    bottom: -75px;
    left: 15%;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.layanan__breadcrumbs--inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.layanan__breadcrumbs--title {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.layanan__breadcrumbs--titleweb {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 4px;
    font-family: "Inter", sans-serif;
    animation: fadeInDown 0.8s ease-out;
}

.layanan__breadcrumbs--titleweb .line-1 {
    font-size: 1.5em;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(210, 155, 194, 0.4);
    letter-spacing: 0.5px;
}

.layanan__breadcrumbs--titleweb .line-2 {
    font-size: 1.2em;
    font-weight: 500;
    color: #e0ccdd;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.layanan__breadcrumbs--titlepage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.layanan__breadcrumbs--titlepage .page-title {
    font-size: 3.5em;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(210, 155, 194, 0.5);
    letter-spacing: 4px;
    background: linear-gradient(135deg, #ffffff 0%, #f0e6ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.layanan__breadcrumbs--title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #d29bc2 50%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(210, 155, 194, 0.6);
    animation: expandWidth 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.layanan__breadcrumbs--item {
    list-style-type: none;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.8s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.layanan__breadcrumbs--item1,
.layanan__breadcrumbs--item2 {
    transition: transform 0.3s ease;
}

.layanan__breadcrumbs--item1:hover,
.layanan__breadcrumbs--item2:hover {
    transform: translateY(-2px);
}

.layanan__breadcrumbs--item a {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 4px 8px;
}

.layanan__breadcrumbs--item a i {
    font-size: 1.1em;
}

.layanan__breadcrumbs--item a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #d29bc2 50%, transparent 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.layanan__breadcrumbs--item a:hover {
    color: #d29bc2;
}

.layanan__breadcrumbs--item a:hover::after {
    width: 100%;
}

.layanan__breadcrumbs--item a.active {
    color: #d29bc2;
    background: rgba(210, 155, 194, 0.15);
    border-radius: 20px;
}

.layanan__breadcrumbs--item a.active::after {
    width: 80%;
}

.layanan__breadcrumbs--separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8em;
    display: flex;
    align-items: center;
}

/* content */
.layanan__content--wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 60px 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.layanan__appointment--wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.layanan__appointment--card {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1200px;
    padding: 32px 40px;
    background: linear-gradient(135deg, #40263c 0%, #5a3850 100%);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(64, 38, 60, 0.25);
    position: relative;
    overflow: hidden;
}

.layanan__appointment--card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(210, 155, 194, 0.15) 0%, transparent 70%);
}

.layanan__appointment--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(210, 155, 194, 0.2);
    border: 3px solid rgba(210, 155, 194, 0.4);
    border-radius: 50%;
    color: #d29bc2;
    font-size: 32px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.layanan__appointment--content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.layanan__appointment--title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.layanan__appointment--subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.layanan__appointment--buttons {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.layanan__appointment--btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.layanan__appointment--btn.primary {
    background: linear-gradient(135deg, #d29bc2 0%, #c88bb0 100%);
    color: #40263c;
    box-shadow: 0 4px 15px rgba(210, 155, 194, 0.4);
}

.layanan__appointment--btn.primary:hover {
    background: linear-gradient(135deg, #e0b8d5 0%, #d29bc2 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(210, 155, 194, 0.5);
}

.layanan__appointment--btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.layanan__appointment--btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.layanan__appointment--btn i {
    font-size: 16px;
}

.layanan__type--wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 0 20px;
}

.layanan__type--card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(64, 38, 60, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-height: 100%; 
}

.layanan__type--card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d29bc2 0%, #40263c 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.layanan__type--card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(64, 38, 60, 0.15);
    border-color: rgba(210, 155, 194, 0.3);
}

.layanan__type--card:hover::before {
    transform: scaleX(1);
}

.layanan__type--iconWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(210, 155, 194, 0.15) 0%, rgba(64, 38, 60, 0.08) 100%);
    border-radius: 16px;
    color: #40263c;
    font-size: 28px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.layanan__type--card:hover .layanan__type--iconWrapper {
    background: linear-gradient(135deg, #d29bc2 0%, #c88bb0 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.layanan__type--content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1; 
}

.layanan__type--title {
    font-size: 22px;
    font-weight: 800;
    color: #40263c;
    margin: 0;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.layanan__type--divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d29bc2 0%, transparent 100%);
    border-radius: 2px;
}

.layanan__type--details {
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    flex: 1; 
}

.layanan__type--link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #40263c;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto; 
    padding: 10px 20px;
    background: rgba(210, 155, 194, 0.1);
    border-radius: 50px;
    width: fit-content;
    transition: all 0.3s ease;
}

.layanan__type--link:hover {
    background: linear-gradient(135deg, #d29bc2 0%, #c88bb0 100%);
    color: #ffffff;
    transform: translateX(4px);
}

.layanan__type--link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.layanan__type--link:hover i {
    transform: translateX(4px);
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    display: flex; 
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.layanan__footer {
    width: 100%;
    font-family: "Inter", sans-serif;
}

.layanan__footerMain {
    background: linear-gradient(135deg, #40263c 0%, #5a3850 50%, #40263c 100%);
    position: relative;
    overflow: hidden;
}

.layanan__footerMain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #d29bc2 25%, 
        #e0ccdd 50%, 
        #d29bc2 75%, 
        transparent 100%
    );
}

.layanan__footerContainer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    color: #ffffff;
}

.layanan__footerColumn {
    display: flex;
    flex-direction: column;
}

.layanan__footerColumnLeft {
    gap: 24px;
}

.layanan__footerLogo {
    margin-bottom: 8px;
}

.layanan__footerLogo img {
    width: 180px;
    height: auto;
    opacity: 0.95;
}

.layanan__footerTagline {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.layanan__footerContact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.layanan__footerContactItem {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.layanan__footerContactItem i {
    font-size: 18px;
    color: #d29bc2;
    margin-top: 4px;
    min-width: 18px;
}

.layanan__footerContactItem strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #e0ccdd;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.layanan__footerContactItem p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.layanan__footerContactItem p.sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.layanan__footerSocial {
    margin-top: 8px;
}

.layanan__footerSocial h4 {
    font-size: 14px;
    font-weight: 600;
    color: #e0ccdd;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.layanan__footerSocialLinks {
    display: flex;
    gap: 12px;
}

.layanan__footerSocialLinks a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(210, 155, 194, 0.15);
    border-radius: 50%;
    color: #e0ccdd;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(210, 155, 194, 0.2);
}

.layanan__footerSocialLinks a:hover {
    background: linear-gradient(135deg, #d29bc2 0%, #e0b8d5 100%);
    color: #40263c;
    transform: translateY(-4px) scale(1.05);
    border-color: #d29bc2;
    box-shadow: 0 8px 20px rgba(210, 155, 194, 0.4);
}

.layanan__footerTitle {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
}

.layanan__footerDivider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d29bc2 0%, transparent 100%);
    border-radius: 2px;
    margin-bottom: 24px;
}

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

.layanan__footerNav a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.layanan__footerNav a i {
    font-size: 10px;
    color: #d29bc2;
    transition: transform 0.3s ease;
}

.layanan__footerNav a:hover {
    background: rgba(210, 155, 194, 0.15);
    color: #ffffff;
    padding-left: 16px;
}

.layanan__footerNav a:hover i {
    transform: translateX(4px);
}

.layanan__footerMap {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(210, 155, 194, 0.2);
}

.layanan__footerMapButton {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #d29bc2 0%, #c88bb0 100%);
    color: #40263c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(210, 155, 194, 0.3);
    width: fit-content;
}

.layanan__footerMapButton i {
    font-size: 16px;
}

.layanan__footerMapButton:hover {
    background: linear-gradient(135deg, #e0b8d5 0%, #d29bc2 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 155, 194, 0.5);
}

.layanan__footerCopyright {
    background: #2d1a28;
    border-top: 1px solid rgba(210, 155, 194, 0.1);
}

.layanan__footerCopyrightContent {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.layanan__footerCopyrightContent p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.layanan__footerCopyrightLinks {
    display: flex;
    align-items: center;
    gap: 16px;
}

.layanan__footerCopyrightLinks a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.layanan__footerCopyrightLinks a:hover {
    color: #d29bc2;
}

.layanan__footerCopyrightLinks .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* Responsive - 1200px */
@media screen and (max-width: 1200px) {
    .layanan__navContainer {
        padding: 16px 60px;
        gap: 24px;
    }

    .layanan__breadcrumbs--wrapper {
        height: 320px;
    }

    .layanan__breadcrumbs--titlepage .page-title {
        font-size: 3em;
    }

    .layanan__type--wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .layanan__footerContainer {
        padding: 50px 40px;
        gap: 40px;
    }
}

/* Responsive - 1024px */
@media screen and (max-width: 1024px) {
    .layanan__header {
        padding: 8px 20px;
        gap: 16px;
    }

    .layanan__header--socialmedia {
        font-size: 14px;
        gap: 10px;
    }

    .layanan__header--language {
        font-size: 14px;
        gap: 10px;
    }

    .layanan__navContainer {
        padding: 16px 50px;
        gap: 30px;
    }

    .layanan__navLink {
        gap: 24px;
    }

    .layanan__navLinkItem a {
        font-size: 15px;
        padding: 8px 14px;
    }

    .layanan__navLinkItemDropdownButton {
        font-size: 15px;
        padding: 8px 14px;
    }

    .layanan__breadcrumbs--wrapper {
        height: 340px;
    }

    .layanan__breadcrumbs--titleweb .line-1 {
        font-size: 1.3em;
    }

    .layanan__breadcrumbs--titleweb .line-2 {
        font-size: 1.1em;
    }

    .layanan__breadcrumbs--titlepage .page-title {
        font-size: 2.8em;
        letter-spacing: 3px;
    }

    .layanan__content--wrapper {
        padding: 40px 24px 60px;
        gap: 50px;
    }
    
    .layanan__appointment--card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 24px;
    }
    
    .layanan__appointment--buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .layanan__appointment--btn {
        justify-content: center;
        width: 100%;
    }
    
    .layanan__footerContainer {
        padding: 50px 35px;
        gap: 45px;
        grid-template-columns: 1.3fr 1fr 1fr;
    }
}

/* Responsive - 768px */
@media screen and (max-width: 768px) {
    body {
        padding-top: 124px;
    }

    .layanan__header {
        padding: 8px 10px;
        justify-content: center;
        gap: 20px;
        position: fixed;
        top: 0;
    }

    .layanan__header--socialmedia {
        display: none;
    }

    .layanan__header--language {
        gap: 16px;
    }

    .layanan__header--language a {
        font-size: 0;
        display: flex;
        align-items: center;
    }

    .layanan__header--language a span {
        font-size: 24px;
    }

    .layanan__nav {
        position: fixed;
        top: 40px;
        z-index: 1001;
    }

    .layanan__navContainer {
        padding: 12px 20px;
        position: relative;
    }

    .layanan__navLink {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 8px;
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        background-color: #b30202;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1002;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .layanan__navLink.active {
        display: flex;
    }

    .layanan__navLinkItem {
        width: 100%;
    }

    .layanan__navLinkItem a {
        display: block;
        width: 100%;
        text-align: center;
    }

    .layanan__navLinkItemDropdown {
        width: 100%;
    }

    .layanan__navLinkItemDropdownButton {
        width: 100%;
        justify-content: center;
    }

    .layanan__navLinkItemDropdownContent {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 8px;
        z-index: 1003;
    }

    .layanan__navLinkItemDropdownContent::before {
        display: none;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1003;
    }

    .layanan__breadcrumbs--wrapper {
        height: 300px;
    }

    .layanan__breadcrumbs--inner {
        padding: 0 30px;
    }

    .layanan__breadcrumbs--titleweb .line-1 {
        font-size: 1.2em;
    }

    .layanan__breadcrumbs--titleweb .line-2 {
        font-size: 1em;
    }

    .layanan__breadcrumbs--titlepage .page-title {
        font-size: 2.2em;
        letter-spacing: 2px;
    }

    .layanan__breadcrumbs--title-underline {
        width: 60px;
    }

    .layanan__breadcrumbs--item {
        padding: 10px 20px;
        gap: 10px;
    }

    .layanan__breadcrumbs--item a {
        font-size: 0.9em;
    }

    .layanan__type--wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .layanan__appointment--title {
        font-size: 20px;
    }
    
    .layanan__appointment--subtitle {
        font-size: 14px;
    }
    
    .layanan__appointment--icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .layanan__type--card {
        padding: 28px;
        min-height: auto; 
    }
    
    .layanan__type--title {
        font-size: 20px;
    }
    
    .layanan__type--details {
        font-size: 14px;
    }

    .layanan__footerContainer {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    .layanan__footerCopyrightContent {
        flex-direction: column;
        text-align: center;
        padding: 20px 30px;
    }
}

/* Responsive - 480px */
@media screen and (max-width: 480px) {
    body {
        padding-top: 114px;
    }

    .layanan__header {
        padding: 8px 10px;
        justify-content: center;
        gap: 20px;
        position: fixed;
        top: 0;
    }

    .layanan__header--socialmedia {
        display: none;
    }

    .layanan__header--language {
        gap: 16px;
    }

    .layanan__header--language a {
        font-size: 0;
        display: flex;
        align-items: center;
    }

    .layanan__header--language a span {
        font-size: 24px;
    }

    .layanan__nav {
        position: fixed;
        top: 40px;
        z-index: 1001;
    }

    .layanan__navLink {
        top: 100px;
        max-height: calc(100vh - 100px);
    }

    .layanan__navLink.active {
        font-size: 14px;
    }

    .layanan__navTitleMain {
        font-size: 14px;
    }

    .layanan__navTitleSub {
        font-size: 10px;
    }

    .layanan__navLogo img {
        width: 50px;
        height: 50px;
    }

    .layanan__breadcrumbs--wrapper {
        height: 280px;
    }

    .layanan__breadcrumbs--inner {
        padding: 0 20px;
    }

    .layanan__breadcrumbs--titleweb .line-1 {
        font-size: 1em;
    }

    .layanan__breadcrumbs--titleweb .line-2 {
        font-size: 0.85em;
    }

    .layanan__breadcrumbs--titlepage .page-title {
        font-size: 1.8em;
        letter-spacing: 1.5px;
    }

    .layanan__breadcrumbs--title-underline {
        width: 50px;
        height: 3px;
    }

    .layanan__breadcrumbs--item {
        padding: 8px 16px;
        gap: 8px;
        font-size: 0.9em;
    }

    .layanan__breadcrumbs--item a {
        font-size: 0.85em;
        padding: 4px 6px;
    }

    .layanan__content--wrapper {
        padding: 32px 20px 50px;
    }
    
    .layanan__appointment--card {
        padding: 24px 20px;
    }
    
    .layanan__appointment--icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .layanan__appointment--title {
        font-size: 18px;
    }
    
    .layanan__appointment--btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .layanan__type--card {
        padding: 24px;
    }
    
    .layanan__type--iconWrapper {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .layanan__footerContainer {
        padding: 30px 20px;
        gap: 30px;
    }

    .layanan__footerTitle {
        font-size: 20px;
    }

    .layanan__footerContactItem {
        gap: 12px;
    }

    .layanan__footerContactItem i {
        font-size: 16px;
    }

    .layanan__footerSocialLinks a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .layanan__footerCopyrightContent {
        padding: 20px;
        font-size: 13px;
    }
}