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

.sejarah__header img {
    width: 200px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.sejarah__navLinkItem {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

.sejarah__navLinkItemDropdown:hover .sejarah__navLinkItemDropdownButton .dropdown-icon {
    transform: rotate(180deg);
}

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

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

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

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

.sejarah__navLinkItemDropdownContent a span {
    flex: 1;
}

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

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

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

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

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

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

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

.sejarah__navLinkItemDropdown:hover .sejarah__navLinkItemDropdownContent {
    display: block;
}

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

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

.sejarah__navLangItemDropdownIcon {
    width: 20px;
}

.sejarah__navLangDropdownIcon {
    width: 16px;
}

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

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

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

.sejarah__navLangDropdown:hover .sejarah__navLangDropdownContent {
    display: block;
}

.sejarah__navLangName {
    font-size: 12px;
}

.sejarah__navLangDropdownIcon {
    max-width: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* content */
.sejarah__isi--content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    width: 100%;
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 40px;
    align-items: start;
}

.sejarah__isi--containerGambar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sejarah__isi--gambar {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f4f7 0%, #ffffff 100%);
    box-shadow: 
        0 20px 60px rgba(64, 38, 60, 0.15),
        0 0 0 1px rgba(210, 155, 194, 0.1);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sejarah__isi--gambar:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 70px rgba(64, 38, 60, 0.2),
        0 0 0 1px rgba(210, 155, 194, 0.15);
}

.sejarah__isi--gambar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #d29bc2 0%, #40263c 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sejarah__isi--gambar:hover::before {
    opacity: 0.1;
}

.sejarah__isi--gambar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sejarah__isi--gambarDecor {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #d29bc2 20%, 
        #40263c 50%, 
        #d29bc2 80%, 
        transparent 100%
    );
    border-radius: 4px;
    animation: decorPulse 3s ease-in-out infinite;
}

@keyframes decorPulse {
    0%, 100% { opacity: 0.5; transform: scaleX(0.95); }
    50% { opacity: 1; transform: scaleX(1); }
}

.sejarah__isi--containerText {
    display: flex;
    flex-direction: column;
}

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

.sejarah__isi--badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(210, 155, 194, 0.15) 0%, rgba(64, 38, 60, 0.08) 100%);
    color: #40263c;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid rgba(210, 155, 194, 0.3);
    width: fit-content;
}

.sejarah__isi--badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #d29bc2;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.sejarah__isi--title {
    font-size: 36px;
    font-weight: 800;
    color: #40263c;
    margin: 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 16px;
}

.sejarah__isi--title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d29bc2 0%, #40263c 100%);
    border-radius: 2px;
}

.sejarah__isi--paragraphs {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sejarah__isi--paragraphContent {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.3px;
    color: #4a4a4a;
    text-align: justify;
    position: relative;
}

.sejarah__isi--highlight {
    color: #40263c;
    font-weight: 700;
    position: relative;
}

.sejarah__isi--paragraphContent strong {
    color: #40263c;
    font-weight: 700;
}

.sejarah__isi--timeline {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(210, 155, 194, 0.08) 0%, rgba(64, 38, 60, 0.03) 100%);
    border-left: 4px solid #d29bc2;
    border-radius: 12px;
    position: relative;
}

.sejarah__isi--timelineIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #d29bc2 0%, #c88bb0 100%);
    color: #ffffff;
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(210, 155, 194, 0.3);
}

.sejarah__isi--timelineContent {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.sejarah__isi--timelineYear {
    font-size: 14px;
    font-weight: 800;
    color: #40263c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sejarah__isi--achievementBox {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #40263c 0%, #5a3850 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(64, 38, 60, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.sejarah__isi--achievementBox::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(210, 155, 194, 0.1) 0%, transparent 70%);
    animation: achievementGlow 4s ease-in-out infinite;
}

@keyframes achievementGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20%, -20%); }
}

.sejarah__isi--achievementIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(210, 155, 194, 0.2);
    color: #d29bc2;
    border-radius: 50%;
    font-size: 24px;
    flex-shrink: 0;
    border: 2px solid rgba(210, 155, 194, 0.3);
    position: relative;
    z-index: 1;
}

.sejarah__isi--achievementText {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.sejarah__isi--achievementText strong {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.sejarah__isi--achievementText p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

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

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

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

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

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

.sejarah__footerColumnLeft {
    gap: 24px;
}

.sejarah__footerLogo {
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

.sejarah__footerSocial {
    margin-top: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .sejarah__isi--content {
        grid-template-columns: 1fr;
        gap: 60px;
        margin: 60px auto;
        padding: 0 24px;
    }

    .sejarah__isi--containerGambar {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .sejarah__isi--title {
        font-size: 32px;
    }

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


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

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

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

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

    .sejarah__navLink {
        gap: 24px;
    }

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

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

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

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

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

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

    .sejarah__isi--content {
        grid-template-columns: 1fr;
        gap: 60px;
        margin: 60px auto;
        padding: 0 24px;
    }
    
    .sejarah__isi--containerGambar {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .sejarah__isi--title {
        font-size: 32px;
    }

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

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

    .sejarah__header--socialmedia {
        display: none;
    }

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

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

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

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

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

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

    .sejarah__navLink.active {
        display: flex;
    }

    .sejarah__navLinkItem {
        width: 100%;
    }

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

    .sejarah__navLinkItemDropdown {
        width: 100%;
    }

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

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

    .sejarah__navLinkItemDropdownContent::before {
        display: none;
    }

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

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

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

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

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

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

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

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

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

    .sejarah__isi--content {
        margin: 40px auto;
    }
    
    .sejarah__isi--gambar {
        padding: 30px;
    }
    
    .sejarah__isi--title {
        font-size: 28px;
    }
    
    .sejarah__isi--badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .sejarah__isi--paragraphContent {
        font-size: 15px;
        text-align: left;
    }
    
    .sejarah__isi--timeline,
    .sejarah__isi--achievementBox {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .sejarah__isi--timelineIcon,
    .sejarah__isi--achievementIcon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

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

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

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

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

    .sejarah__header--socialmedia {
        display: none;
    }

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

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

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

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

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

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

    .sejarah__navTitleMain {
        font-size: 14px;
    }

    .sejarah__navTitleSub {
        font-size: 10px;
    }

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

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

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

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

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

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

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

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

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

    .sejarah__isi--content {
        padding: 0 20px;
    }
    
    .sejarah__isi--containerGambar {
        max-width: 100%;
    }
    
    .sejarah__isi--gambar {
        padding: 24px;
    }
    
    .sejarah__isi--title {
        font-size: 24px;
    }
    
    .sejarah__isi--paragraphContent {
        font-size: 14px;
    }

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

    .sejarah__footerTitle {
        font-size: 20px;
    }

    .sejarah__footerContactItem {
        gap: 12px;
    }

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

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

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