@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 */
.hubungikami__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;
}

.hubungikami__header img {
    width: 200px;
}

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

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

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

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

/* Navbar */
.hubungikami__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;
}

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

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

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

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

.hubungikami__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);
}

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

.hubungikami__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);
}

.hubungikami__navLinkItem {
    position: relative;
}

.hubungikami__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;
}

.hubungikami__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;
}

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

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

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

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

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

.hubungikami__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;
}

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

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

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

.hubungikami__navLinkItemDropdown:hover .hubungikami__navLinkItemDropdownButton .dropdown-icon {
    transform: rotate(180deg);
}

.hubungikami__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);
    }
}

.hubungikami__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;
}

.hubungikami__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;
}

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

.hubungikami__navLinkItemDropdownContent a span {
    flex: 1;
}

.hubungikami__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;
}

.hubungikami__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;
}

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

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

.hubungikami__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;
}

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

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

.hubungikami__navLinkItemDropdown:hover .hubungikami__navLinkItemDropdownContent {
    display: block;
}

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

.hubungikami__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;
}

.hubungikami__navLangItemDropdownIcon {
    width: 20px;
}

.hubungikami__navLangDropdownIcon {
    width: 16px;
}

.hubungikami__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);
}

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

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

.hubungikami__navLangDropdown:hover .hubungikami__navLangDropdownContent {
    display: block;
}

.hubungikami__navLangName {
    font-size: 12px;
}

.hubungikami__navLangDropdownIcon {
    max-width: 8px;
}

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

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

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

.hubungikami__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;
}

.hubungikami__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;
}

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

.hubungikami__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;
}

.hubungikami__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;
    }
}

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

.hubungikami__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');

.hubungikami__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;
}

.hubungikami__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;
}

.hubungikami__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);
    }
}

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

.hubungikami__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;
}

.hubungikami__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;
    }
}

.hubungikami__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;
    }
}

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

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

.hubungikami__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;
}

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

.hubungikami__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%);
}

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

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

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

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

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

/* content */
.hubungikami__wrapper {
    display: flex;
    gap: 40px;
    padding: 60px 0;
    max-width: 1200px;
    margin: auto;
}

.hubungikami__left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 0 0 35%
}

.hubungikami__information {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hubungikami__information--title {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hubungikami__wrapper a {
    text-decoration: none;
    color: #2b2b2b;
    font-weight: 500;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.hubungikami__wrapper a:hover {
    color: #40263c;    
    opacity: 0.85;
}

.hubungikami__email,
.hubungikami__instagram,
.hubungikami__wa--nomor {
    transition: all 0.3s ease;
}

.hubungikami__email a,
.hubungikami__instagram a,
.hubungikami__wa--nomor a {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #321d2f;
    text-decoration: none;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.hubungikami__email a:hover,
.hubungikami__instagram a:hover,
.hubungikami__wa--nomor a:hover {
    border-color: #d29bc2;
    background: linear-gradient(135deg, #faf8fa 0%, #ffffff 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(210, 155, 194, 0.15);
}

.hubungikami__email a i,
.hubungikami__instagram a i,
.hubungikami__wa--nomor a i {
    font-size: 20px;
    color: #d29bc2;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.hubungikami__email a:hover i {
    color: #c57baa;
    transform: scale(1.1);
}

.hubungikami__instagram a:hover i {
    color: #c57baa;
    transform: rotate(15deg) scale(1.1);
}

.hubungikami__wa--nomor a:hover i {
    color: #c57baa;
    animation: ring 0.5s ease;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.hubungikami__alamat {
    padding: 20px;
    background: linear-gradient(135deg, #faf8fa 0%, #f5f5f5 100%);
    border-radius: 12px;
    border-left: 4px solid #d29bc2;
    line-height: 1.7;
}

.hubungikami__alamat--title {
    font-size: 16px;
    font-weight: 600;
    color: #321d2f;
    margin-bottom: 8px;
}

.hubungikami__alamat--subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #5a4755;
    display: flex;
    align-items: center;
    gap: 8px;
    font-style: italic;
}

.hubungikami__alamat--subtitle i {
    color: #d29bc2;
    font-size: 16px;
}

.hubungikami__wa--wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px dashed #e0ccdd;
}

.hubungikami__wa--qr {
    width: 160px;
    height: 160px;
    background: #ffffff;
    border: 3px solid #e0ccdd;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(64, 38, 60, 0.1);
    transition: all 0.3s ease;
    align-self: center;
}

.hubungikami__wa--qr:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 24px rgba(210, 155, 194, 0.25);
    border-color: #d29bc2;
}

.hubungikami__wa--qr img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.hubungikami__wa--qr-label {
    font-size: 12px;
    font-weight: 600;
    color: #5a4755;
    text-align: center;
    margin-top: 4px;
}

.hubungikami__map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(64, 38, 60, 0.12);
    transition: all 0.3s ease;
}

.hubungikami__map:hover {
    box-shadow: 0 8px 24px rgba(64, 38, 60, 0.18);
}

.hubungikami__map iframe {
    display: block;
    border: 0;
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }

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

.hubungikami__right {
    flex: 0 0 65%;
}

.hubungikami__formbg {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.hubungikami__head-text {
    font-size: 18px;
    margin-bottom: 25px;
    color: #321d2f;
    font-weight: 600;
}

.hubungikami__inputform label {
    font-size: 14px;
    color: #321d2f;
    font-weight: 600;
}

.hubungikami__inputform input,
.hubungikami__inputform textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #d4c6dc;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 15px;
    transition: 0.2s ease;
    box-sizing: border-box;
}

.hubungikami__inputform input::placeholder,
.hubungikami__inputform textarea::placeholder {
    color: #b89ec4;
    opacity: 1;
}

.hubungikami__inputform input:focus,
.hubungikami__inputform textarea:focus {
    border-color: #c57baa;
    outline: none;
    box-shadow: 0 0 0 4px rgba(210, 155, 194, 0.15);
}

#konselingOptions .hubungikami__custom-radio-option,
#asesmenOptions .hubungikami__custom-radio-option {
    margin-bottom: 12px;
}

#konselingOptions .hubungikami__custom-radio-option:last-child,
#asesmenOptions .hubungikami__custom-radio-option:last-child {
    margin-bottom: 0;
}

.hubungikami__custom-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0 18px 0;
}

.hubungikami__custom-radio-option {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #694a6f;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.hubungikami__custom-radio-option:hover {
    color: #40263c;
}

.hubungikami__custom-radio-circle {
    width: 14px;
    height: 14px;
    border: 2px solid #d4c6dc;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: white;
}

.hubungikami__custom-radio-option:hover .hubungikami__custom-radio-circle {
    border-color: #c57baa;
}

.hubungikami__custom-radio-option.active .hubungikami__custom-radio-circle {
    border-color: #c57baa;
}

.hubungikami__custom-radio-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c57baa;
    transform: scale(0);
    transition: transform 0.2s ease;
}

.hubungikami__custom-radio-option.active .hubungikami__custom-radio-inner {
    transform: scale(1);
}

.hubungikami__custom-select-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 18px;
}

.hubungikami__custom-select {
    position: relative;
    width: 100%;
}

.hubungikami__custom-select-trigger {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #d4c6dc;
    border-radius: 10px;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #321d2f;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.hubungikami__custom-select-trigger:hover {
    border-color: #9d72b5;
}

.hubungikami__custom-select.open .hubungikami__custom-select-trigger {
    border-color: #9d72b5;
    box-shadow: 0 0 0 3px rgba(157, 114, 181, 0.18);
}

.hubungikami__custom-arrow {
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23694a6f' d='M1.41 0L6 4.58L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.hubungikami__custom-select.open .hubungikami__custom-arrow {
    transform: rotate(180deg);
}

.hubungikami__custom-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: white;
    border: 1.5px solid #d4c6dc;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 250px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
    padding: 8px;
}

.hubungikami__custom-select.open .hubungikami__custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hubungikami__custom-option {
    padding: 12px 14px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.15s ease;
    font-size: 15px;
    color: #321d2f;
}

.hubungikami__custom-option:hover {
    background-color: #f5f5f5;
}

.hubungikami__custom-option.selected {
    background-color: #f5f5f5;
    font-weight: 500;
}

.hubungikami__custom-options::-webkit-scrollbar {
    width: 6px;
}

.hubungikami__custom-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.hubungikami__custom-options::-webkit-scrollbar-thumb {
    background: #d4c6dc;
    border-radius: 10px;
}

.hubungikami__custom-options::-webkit-scrollbar-thumb:hover {
    background: #9d72b5;
}

.hubungikami__kirim--wrapper {
    display: flex;
    justify-content: flex-end;
}

.hubungikami__kirim--button button {
    background: linear-gradient(135deg, #40263c 0%, #2d1a2a 100%);
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(64, 38, 60, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.hubungikami__kirim--button button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hubungikami__kirim--button button:hover::before {
    left: 100%;
}

.hubungikami__kirim--button button:hover {
    background: linear-gradient(135deg, #552f4d 0%, #40263c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(64, 38, 60, 0.5);
}

.hubungikami__kirim--button button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(64, 38, 60, 0.4);
}

.hubungikami__kirim--button button i {
    margin-left: 6px;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.hubungikami__kirim--button button:hover i {
    transform: translateX(3px);
}

.hubungikami__kirim--button button:disabled {
    background: linear-gradient(135deg, #8a7a85 0%, #6d5d68 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

.hubungikami__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%
    );
}

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

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

.hubungikami__footerColumnLeft {
    gap: 24px;
}

.hubungikami__footerLogo {
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

.hubungikami__footerSocial {
    margin-top: 8px;
}

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

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

.hubungikami__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);
}

.hubungikami__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);
}

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

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

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

.hubungikami__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;
}

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

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

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

.hubungikami__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);
}

.hubungikami__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;
}

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

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

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

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

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

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

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

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

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

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

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

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

    .hubungikami__wrapper {
        flex-direction: column;
    }

    .hubungikami__left {
        flex: 0 0 40%;
    }
    
    .hubungikami__information {
        padding: 28px;
    }

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

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

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

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

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

    .hubungikami__navLink {
        gap: 24px;
    }

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

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

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

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

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

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

    .hubungikami__wrapper {
        flex-direction: column;
    }

    .hubungikami__left {
        flex: 0 0 40%;
    }
    
    .hubungikami__information {
        padding: 24px;
    }

    .hubungikami__footerContainer {
        padding: 50px 35px;
        gap: 45px;
        grid-template-columns: 1.3fr 1fr 1fr;
    }
}

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

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

    .hubungikami__header--socialmedia {
        display: none;
    }

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

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

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

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

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

    .hubungikami__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;
    }

    .hubungikami__navLink.active {
        display: flex;
    }

    .hubungikami__navLinkItem {
        width: 100%;
    }

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

    .hubungikami__navLinkItemDropdown {
        width: 100%;
    }

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

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

    .hubungikami__navLinkItemDropdownContent::before {
        display: none;
    }

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

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

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

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

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

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

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

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

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

    .hubungikami__left {
        flex: 0 0 100%;
    }
    
    .hubungikami__information {
        padding: 20px;
    }
    
    .hubungikami__email a,
    .hubungikami__instagram a,
    .hubungikami__wa--nomor a {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .hubungikami__alamat {
        padding: 16px;
    }
    
    .hubungikami__wa--qr {
        width: 140px;
        height: 140px;
    }

    .hubungikami__kirim--wrapper {
        justify-content: center;
    }

    .hubungikami__kirim--button button {
        padding: 11px 28px;
        font-size: 14px;
        width: 100%;
    }

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

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

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

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

    .hubungikami__header--socialmedia {
        display: none;
    }

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

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

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

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

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

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

    .hubungikami__navTitleMain {
        font-size: 14px;
    }

    .hubungikami__navTitleSub {
        font-size: 10px;
    }

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

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

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

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

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

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

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

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

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

    .hubungikami__information {
        padding: 16px;
        border-radius: 16px;
    }
    
    .hubungikami__information--title {
        gap: 20px;
    }
    
    .hubungikami__map {
        border-radius: 12px;
    }
    
    .hubungikami__email a,
    .hubungikami__instagram a,
    .hubungikami__wa--nomor a {
        font-size: 13px;
        padding: 10px 14px;
        gap: 10px;
    }
    
    .hubungikami__wa--qr {
        width: 120px;
        height: 120px;
        padding: 10px;
    }

    .hubungikami__kirim--button button {
        padding: 10px 24px;
        font-size: 14px;
    }

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

    .hubungikami__footerTitle {
        font-size: 20px;
    }

    .hubungikami__footerContactItem {
        gap: 12px;
    }

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

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

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