.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-45982 .elementor-element.elementor-element-8f08199{z-index:9999;}}/* Start custom CSS for html, class: .elementor-element-7e6f6c1 *//* =========================================
   BOTTOM NAVIGATION COMPLETE STYLES
   - Custom Bottom Navigation with #0AA5BC theme
   - Optimized Popup Animations
   - Share & Search Components
   - Mobile Optimizations
   - UNIQUE CLASS NAMES to avoid conflicts
   - FIX untuk popup berkedip
   ========================================= */

/* Browser Reset for Consistency */
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reset search input browser styling */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

/* ===== 1. BOTTOM NAVIGATION BASE ===== */
.custom-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #0AA5BC; /* Warna tema utama */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

.nav-item-custom {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.nav-item-custom a,
.nav-button-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white; /* Teks putih */
    text-decoration: none;
    cursor: pointer;
}

.nav-item-custom i {
    font-size: 20px;
    margin-bottom: 3px;
    transition: transform 0.3s ease;
    color: white; /* Icon putih */
}

.nav-item-custom span {
    font-size: 11px;
    font-weight: 500;
    color: white; /* Teks putih */
}

.nav-item-custom:hover,
.nav-item-custom:active,
.nav-item-custom.active {
    background-color: rgba(255, 255, 255, 0.1); /* Highlight saat hover/active */
}

.nav-item-custom:hover i,
.nav-item-custom:active i,
.nav-item-custom.active i {
    transform: translateY(-3px);
}

/* ===== 2. OPTIMIZED POPUP ANIMATIONS ===== */
.nav-popup-custom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 999998;
    visibility: hidden;
    transition: visibility 0s linear 0.3s;
    pointer-events: none; /* Awalnya tidak menerima event */
    will-change: visibility;
}

.popup-overlay-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.25s ease-out;
    will-change: opacity;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    pointer-events: auto; /* Overlay harus menerima event */
}

.popup-content-custom {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    max-height: 80vh;
    background-color: #fff; /* Popup background putih */
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease-out, opacity 0.2s ease-out;
    transform: translateY(100%);
    opacity: 0;
    overflow-y: auto;
    will-change: transform, opacity;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.popup-content-custom.compact {
    max-height: auto;
    border-radius: 16px 16px 0 0;
    padding: 20px 0;
}

.popup-body-custom {
    padding: 15px 20px;
}

/* Active popup state */
.nav-popup-custom.active {
    height: auto;
    visibility: visible;
    transition-delay: 0s;
    pointer-events: auto; /* Aktifkan event saat active */
}

.nav-popup-custom.active .popup-overlay-custom {
    opacity: 1;
}

.nav-popup-custom.active .popup-content-custom {
    transform: translateY(0);
    opacity: 1;
    bottom: 60px; /* Equal to height of bottom nav */
}

/* Closing popup state - mencegah event selama animasi */
.nav-popup-custom.closing {
    pointer-events: none !important;
}

/* ===== 3. SHARE COMPONENT STYLES ===== */
.share-grid-custom {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 15px;
}

.share-icon-item-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    margin: 0 5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.share-icon-item-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.share-icon-item-custom:active {
    transform: translateY(-2px);
}

.share-icon-item-custom i {
    font-size: 20px;
}

/* Social Icons Colors */
.share-icon-item-custom:nth-child(1) {
    color: #1877F2;
    background-color: rgba(24, 119, 242, 0.1);
}

.share-icon-item-custom:nth-child(2) {
    color: #1DA1F2;
    background-color: rgba(29, 161, 242, 0.1);
}

.share-icon-item-custom:nth-child(3) {
    color: #25D366;
    background-color: rgba(37, 211, 102, 0.1);
}

.share-icon-item-custom:nth-child(4) {
    color: #0088cc;
    background-color: rgba(0, 136, 204, 0.1);
}

.share-icon-item-custom:nth-child(5) {
    color: #6c757d;
    background-color: rgba(108, 117, 125, 0.1);
}

/* ===== 4. SEARCH COMPONENT STYLES ===== */
.search-form-custom {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
}

.search-field-custom {
    width: 100%;
    padding: 12px 45px 12px 15px;
    font-size: 16px !important; /* Mencegah zoom pada iOS */
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    outline: none;
    background-color: #f7f7f7 !important; /* Placeholder background abu-abu */
    color: #333 !important; /* Teks hitam */
    -webkit-text-fill-color: #333 !important; /* iOS fix untuk warna teks */
    opacity: 1 !important; /* Mencegah opacity berubah di iOS */
    -webkit-appearance: none;
    appearance: none;
    /* Hapus transisi pada background-color untuk mencegah flashing */
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    transition-property: border-color, box-shadow !important;
}

/* PENTING: Fix khusus untuk placeholder */
.search-field-custom::placeholder {
    color: #8a8a8a !important; 
    opacity: 1 !important;
}

.search-field-custom:-ms-input-placeholder { 
    color: #8a8a8a !important;
}

.search-field-custom::-ms-input-placeholder { 
    color: #8a8a8a !important;
}

.search-field-custom:focus {
    border-color: #0AA5BC; /* Warna tema utama */
    background-color: #ffffff !important; /* Saat focus background putih */
    box-shadow: 0 0 0 3px rgba(10, 165, 188, 0.2); /* Warna tema utama dengan opacity */
    /* Hapus transisi pada background-color untuk mencegah flashing */
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    transition-property: border-color, box-shadow !important;
}

/* Fix untuk autofill */
.search-field-custom:-webkit-autofill,
.search-field-custom:-webkit-autofill:hover, 
.search-field-custom:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #f7f7f7 inset !important;
    -webkit-text-fill-color: #333 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.search-submit-custom {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0AA5BC; /* Warna tema utama */
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 14px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit-custom:hover {
    background-color: #088ea2; /* Warna tema yang sedikit lebih gelap */
}

.search-submit-custom:active {
    transform: translateY(-50%) scale(0.95);
}

/* ===== 5. ANIMATIONS ===== */
@keyframes pulse {
    0% { transform: scale3d(1, 1, 1); }
    50% { transform: scale3d(0.95, 0.95, 1); }
    100% { transform: scale3d(1, 1, 1); }
}

.nav-item-custom.active .nav-button-custom i {
    animation: pulse 0.4s ease;
}

/* ===== 6. NOTIFICATIONS & FEEDBACK ===== */
.toast-notification-custom {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.toast-notification-custom.show {
    opacity: 1;
    visibility: visible;
}

/* ===== 7. RESPONSIVE ADJUSTMENTS ===== */
body {
    padding-bottom: 60px;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Fix untuk viewport di iOS */
html {
    width: 100%;
    height: 100%;
}

/* Mencegah scroll body saat popup aktif di iOS */
body.popup-open-custom {
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Fix restore zoom level */
.fix-ios-zoom-custom {
    height: 100%;
    overflow: hidden;
    width: 100%;
}

/* Fix for iPhone X+ bottom spacing */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .custom-bottom-nav {
        height: calc(60px + env(safe-area-inset-bottom));
        padding-bottom: env(safe-area-inset-bottom);
    }

    body {
        padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }

    .nav-popup-custom.active .popup-content-custom {
        bottom: calc(60px + env(safe-area-inset-bottom));
    }
}

/* Smaller devices optimization */
@media (max-width: 480px) {
    .share-grid-custom {
        padding: 0 10px;
    }
    
    .share-icon-item-custom {
        width: 45px;
        height: 45px;
        margin: 0 3px;
    }
    
    .share-icon-item-custom i {
        font-size: 18px;
    }
    
    .nav-item-custom i {
        font-size: 18px;
    }
    
    .nav-item-custom span {
        font-size: 10px;
    }
}

/* For very small devices */
@media (max-width: 320px) {
    .share-icon-item-custom {
        width: 40px;
        height: 40px;
    }
    
    .nav-item-custom span {
        font-size: 9px;
    }
}

/* Override style for search field - EXTRA SPECIFICITY */
input.search-field-custom,
.search-form-custom input[type="search"].search-field-custom,
input[type="search"].search-field-custom,
form input.search-field-custom {
    background-color: #f7f7f7 !important;
    color: #333 !important;
    border: 2px solid #e0e0e0 !important;
}

input.search-field-custom:focus,
.search-form-custom input[type="search"].search-field-custom:focus,
input[type="search"].search-field-custom:focus,
form input.search-field-custom:focus {
    background-color: #ffffff !important;
    border-color: #0AA5BC !important;
}/* End custom CSS */