:root { --PRIMARY-COLOR: #FFFFFF; --ACCENT-COLOR: #FFC107; --TEXT-COLOR: #212529; --BG-COLOR: #F8F9FA; --HEADER-BG: #FFFFFF; --CARD-BG: #FFFFFF; --BUTTON-BG: #FFC107; --BUTTON-TEXT: #212529; --HOVER-COLOR: #FFD54F; --BORDER-COLOR: #E9ECEF; --LINK-COLOR: #FFC107; --MAIN-FONT: 'Lato Regular', sans-serif; --HEADER-FONT: 'Lato Black', sans-serif; --SOCIAL-BG: #212529; --SOCIAL-GLOW-COLOR: #FFFFFF; --SOCIAL-ICON-COLOR: #FFFFFF; --MAIN-BTN-BG: #212529; --MAIN-BTN-TEXT: #FFFFFF; --MAIN-BTN-HOVER: #000000; --FOOTER-BG: #FFFFFF; --FOOTER-TEXT-COLOR: #495057; --FOOTER-TITLE-COLOR: #212529; --NAV-BORDER-3D-COLOR: #E9ECEF; --HEADER-GRADIENT-TOP: rgba(255,255,255,0.98); --HEADER-GRADIENT-BOTTOM: rgba(255,255,255,0.9); --CARD-SHADOW-COLOR: rgba(255, 193, 7, 0.4); }
@font-face { font-family: 'Lato Regular'; font-style: normal; font-weight: 300; src: local('Lato Regular'), url('Lato-Regular.ttf') format('truetype'); }
@font-face { font-family: 'Lato Black'; font-style: normal; font-weight: 300; src: local('Lato Black'), url('Lato-Black.ttf') format('truetype'); }
@font-face { font-family: 'Lato Thin'; font-style: normal; font-weight: 300; src: local('Lato Thin'), url('Lato-Thin.ttf') format('truetype'); }
@font-face { font-family: 'Lato Light'; font-style: normal; font-weight: 400; src: local('Lato Light'), url('Lato-Light.ttf') format('truetype'); }
@font-face { font-family: 'Russo One Regular'; font-style: normal; font-weight: normal; src: local('Russo One Regular'), url('RussoOne-Regular.woff') format('woff'); display: inline-block; transform: scaleX(0.95); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes glitch { 0% { text-shadow: 2px 2px var(--ACCENT-COLOR), -2px -2px var(--TEXT-COLOR); transform: translate(0); } 25% { text-shadow: -2px -2px var(--ACCENT-COLOR), 2px 2px var(--TEXT-COLOR); transform: translate(2px); } 50% { text-shadow: 2px -2px var(--ACCENT-COLOR), -2px 2px var(--TEXT-COLOR); transform: translate(-2px); } 75% { text-shadow: -2px 2px var(--ACCENT-COLOR), 2px -2px var(--TEXT-COLOR); transform: translate(2px); } 100% { text-shadow: 2px 2px var(--ACCENT-COLOR), -2px -2px var(--TEXT-COLOR); transform: translate(0); } }
@keyframes diagonal-scan { 0% { transform: translate(-100%, -100%) rotate(45deg); } 100% { transform: translate(100%, 100%) rotate(45deg); } }
@keyframes cardGlow { 0% { box-shadow: 0 4px 15px rgba(0,0,0,0.08); } 50% { box-shadow: 0 4px 20px var(--CARD-SHADOW-COLOR); } 100% { box-shadow: 0 4px 15px rgba(0,0,0,0.08); } }
* { box-sizing: border-box; }
body { font-family: var(--MAIN-FONT); background-color: var(--BG-COLOR); color: var(--TEXT-COLOR); margin: 0; padding: 0; line-height: 1.6; min-height: 100vh; overflow-x: hidden; animation: fadeIn 0.8s ease-out; }
img { pointer-events: none; user-select: none; }
header { background: linear-gradient(to bottom, var(--HEADER-GRADIENT-TOP) 0%, var(--HEADER-GRADIENT-BOTTOM) 100%); box-shadow: 0 2px 10px rgba(0,0,0,0.08); border-bottom: 1px solid var(--NAV-BORDER-3D-COLOR); position: sticky; top: 0; z-index: 1000; width: 100%; }
.headerContainerWrapper { max-width: 1200px; width: 95%; margin: 0 auto; padding: 10px 0; }
.headerContainer { display: flex; flex-direction: row; justify-content: space-between; align-items: center; flex-wrap: nowrap; }
.headerBrand { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 4px 0; }
.headerBrand h1 { font-family: var(--HEADER-FONT); font-weight: 700; font-size: 1.4rem; margin: 0; color: var(--TEXT-COLOR); letter-spacing: 0.5px; }
.headerLogoLink { display: flex; align-items: center; text-decoration: none; }
.headerLogo { max-height: 35px; width: auto; border-radius: 50%; object-fit: cover; }
.headerTitleText { opacity: 0; transition: opacity 1.8s ease-in; }
.headerTitleText.loaded { opacity: 1; }
.mainNav { width: auto; transition: all 0.3s ease; }
.mainNav ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: nowrap; justify-content: center; /* Dipusatkan */ gap: 20px; align-items: center; }
.mainNav li { display: inline-block; }
.mainNav a { font-family: var(--MAIN-FONT); font-weight: 600; font-size: 0.95rem; color: var(--TEXT-COLOR); text-decoration: none; transition: color 0.3s, transform 0.1s; padding: 8px 0; border-radius: 0; position: relative; overflow: hidden; display: block; }
.mainNav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 3px; background-color: var(--ACCENT-COLOR); transition: width 0.3s ease-out; border-radius: 2px; }
.mainNav a:hover { color: var(--ACCENT-COLOR); transform: translateY(-1px); }
.mainNav a:hover::after, .mainNav a.active::after { width: 100%; }
.mainNav a.active { color: var(--ACCENT-COLOR); font-weight: 700; background-color: transparent; }
.mainNav a.active:hover { background-color: transparent; }
.languageSwitcher { position: relative; width: 120px; margin-left: 20px; }
.customSelectContainer { position: relative; width: 100%; }
.selectedLangDisplay { display: flex; align-items: center; padding: 8px 12px; border: 1px solid var(--BORDER-COLOR); border-radius: 8px; background-color: var(--BG-COLOR); cursor: pointer; justify-content: space-between; font-size: 0.9rem; transition: all 0.2s; }
.selectedLangDisplay:hover { border-color: var(--ACCENT-COLOR); }
.selectedLangDisplay .flag-icon { margin-right: 6px; font-size: 1rem; }
.selectedLangDisplay .langName { font-size: 0.85rem; font-weight: 500; }
.customSelectContainer.active .selectedLangDisplay .fa-caret-down { transform: rotate(180deg); }
.langOptionsList { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background-color: var(--CARD-BG); border: 1px solid var(--BORDER-COLOR); border-radius: 8px; box-shadow: 0 6px 15px rgba(0,0,0,0.1); z-index: 100; max-height: 200px; overflow-y: auto; }
.langSearch { width: calc(100% - 16px); padding: 8px 10px; margin: 8px; border: 1px solid var(--BORDER-COLOR); border-radius: 6px; font-size: 0.85rem; background-color: var(--BG-COLOR); color: var(--TEXT-COLOR); }
.langOption { display: flex; align-items: center; padding: 10px; cursor: pointer; font-size: 0.9rem; }
.langOption:hover { background-color: var(--HOVER-COLOR); }
.langOption .flag-icon { margin-right: 8px; font-size: 1.1rem; }
.hidden { display: none; }
main { padding: 30px 0; min-height: calc(100vh - 50px); display: flex; justify-content: center; align-items: flex-start; width: 100%; max-width: 100%; }
.mainCard { max-width: 500px; margin: 15px; padding: 25px; background-color: var(--CARD-BG); border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.4s ease; text-align: center; animation: cardGlow 3s infinite alternate ease-in-out; }
.mainCard:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.15); transform: translateY(-2px); }
.mainFooter { background-color: var(--FOOTER-BG); border-top: 1px solid var(--BORDER-COLOR); padding: 30px 0 15px 0; width: 100%; text-align: center; color: var(--FOOTER-TEXT-COLOR); }
.footerContainerWrapper { max-width: 1200px; width: 95%; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 25px; }
.footerGrid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; width: 100%; text-align: left; padding-bottom: 15px; border-bottom: 1px solid var(--BORDER-COLOR); }
.footerTitle { font-family: var(--HEADER-FONT); font-size: 1.1rem; font-weight: 700; color: var(--FOOTER-TITLE-COLOR); margin-top: 0; margin-bottom: 12px; }
.footerCompany .footerBrand { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footerCompany .footerTitle { margin: 0; font-size: 1.4rem; }
.footerLogo { max-height: 35px; width: auto; border-radius: 50%; object-fit: cover; }
.footerTagline { font-size: 0.9rem; margin: 0 0 15px 0; color: var(--TEXT-COLOR); font-style: italic; font-weight: 500; }
.footerQuickLinks ul, .footerLegalLinks ul { list-style: none; padding: 0; margin: 0; }
.footerQuickLinks li, .footerLegalLinks li { margin-bottom: 8px; }
.footerQuickLinks .footerLink, .footerLegalLinks .footerLink { font-size: 0.85rem; color: var(--FOOTER-TEXT-COLOR); text-decoration: none; transition: color 0.3s; padding: 5px 0; display: inline-block; }
.footerQuickLinks .footerLink:hover, .footerLegalLinks .footerLink:hover { color: var(--ACCENT-COLOR); }
.socialButtons { display: flex; gap: 10px; justify-content: flex-start; margin-top: 12px; }
.socialButtons a { width: 30px; height: 30px; background-color: var(--SOCIAL-BG); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--SOCIAL-ICON-COLOR); font-size: 0.9rem; border: 1px solid var(--SOCIAL-ICON-COLOR); box-shadow: 0 0 0 rgba(255, 255, 255, 0); transition: all 0.3s ease; text-decoration: none; position: relative; overflow: hidden; z-index: 1; }
.socialButtons a:hover { transform: scale(1.1); box-shadow: 0 0 8px var(--SOCIAL-GLOW-COLOR), 0 0 15px var(--SOCIAL-GLOW-COLOR); }
.socialButtons a::after { content: ''; position: absolute; top: -100%; left: -100%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent); animation: diagonal-scan 2s linear infinite; z-index: 2; pointer-events: none; }
.copyright { font-size: 0.8rem; color: var(--FOOTER-TEXT-COLOR); margin-top: 15px; text-align: center; width: 100%; line-height: 1.8; }
.companyInfo { font-size: 0.75rem; font-weight: 500; color: #6C757D; margin-top: 5px; }
.poweredBy { font-size: 0.7rem; color: #ADB5BD; margin-top: 5px; }
.floatingBackToTopBtn { position: fixed; bottom: 60px; right: 15px; width: 40px; height: 40px; background-color: var(--ACCENT-COLOR); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--BUTTON-TEXT); font-size: 1.1rem; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25); z-index: 999; transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease; text-decoration: none; opacity: 0; pointer-events: none; }
.floatingBackToTopBtn.visible { opacity: 1; pointer-events: auto; }
.floatingBackToTopBtn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); }
.floatingWhatsappBtn { position: fixed; bottom: 15px; right: 15px; width: 40px; height: 40px; background-color: #25D366; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--PRIMARY-COLOR); font-size: 1.1rem; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25); z-index: 999; transition: transform 0.2s ease, box-shadow 0.2s ease; text-decoration: none; }
.floatingWhatsappBtn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); }
.mainContactBtn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 25px; margin-top: 25px; font-size: 1rem; font-weight: 600; text-decoration: none; color: var(--MAIN-BTN-TEXT); background-color: var(--MAIN-BTN-BG); border: none; border-radius: 8px; cursor: pointer; transition: background-color 0.3s ease, transform 0.1s ease, box-shadow 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.mainContactBtn i { margin-right: 8px; font-size: 1.1rem; }
.mainContactBtn:hover { background-color: var(--MAIN-BTN-HOVER); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0,0,0,0.2); }
.contactPageBtn { margin-bottom: 20px; }
@media (max-width: 1024px) { .headerContainerWrapper { width: 94%; } .mainNav ul { gap: 15px; } .mainNav a { font-size: 0.9rem; padding: 6px 0; } .languageSwitcher { margin-left: 15px; } }
@media (max-width: 900px) { .headerContainer { align-items: center; } .mainNav { display: block; position: absolute; top: 100%; left: 0; right: 0; background-color: var(--HEADER-BG); box-shadow: 0 8px 16px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; max-height: 0; overflow: hidden; transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, max-height 0.3s ease-in-out; border-top: 1px solid var(--NAV-BORDER-3D-COLOR); } .mainNav.active { opacity: 1; visibility: visible; max-height: 400px; } .mainNav ul { flex-direction: column; align-items: stretch; padding: 10px 0; gap: 0; width: 100%; } .mainNav li { width: 100%; text-align: left; } .mainNav a { display: block; padding: 12px 20px; border-bottom: none !important; } .mainNav a::after { display: none; } .mainNav a.active { background-color: rgba(255, 193, 7, 0.15); color: var(--ACCENT-COLOR); } .mainNav a:hover { background-color: rgba(255, 193, 7, 0.05); } .languageSwitcher { margin-left: 10px; } .footerGrid { grid-template-columns: 1fr; gap: 20px; text-align: center; } .footerCompany { border-bottom: 1px solid var(--BORDER-COLOR); padding-bottom: 15px; } .footerCompany .footerBrand { justify-content: center; } .socialButtons { justify-content: center; } .footerTitle { text-align: center; } .footerQuickLinks ul, .footerLegalLinks ul { text-align: center; } }
@media (max-width: 768px) { .headerBrand h1 { font-size: 1.3rem; } .headerLogo { max-height: 30px; } }
@media (max-width: 576px) { .headerContainerWrapper { width: 92%; padding: 8px 0; } .headerBrand h1 { font-size: 1.2rem; } .footerContainerWrapper { width: 90%; } }
@media (max-width: 480px) { .mainCard { margin: 10px; padding: 20px; border-radius: 12px; } .floatingBackToTopBtn { bottom: 50px; right: 10px; width: 35px; height: 35px; font-size: 1rem; } .floatingWhatsappBtn { bottom: 10px; right: 10px; width: 35px; height: 35px; font-size: 1rem; } }
