.elementor-3063 .elementor-element.elementor-element-eb2436a{--display:flex;}.elementor-3063 .elementor-element.elementor-element-eb2436a:not(.elementor-motion-effects-element-type-background), .elementor-3063 .elementor-element.elementor-element-eb2436a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#626262;}@media(max-width:767px){.elementor-3063 .elementor-element.elementor-element-a0edd01 > .elementor-widget-container{margin:-10px -10px -10px -10px;}}/* Start custom CSS for html, class: .elementor-element-a0edd01 */:root {
    --neon-cyan: #00f3ff;
    --neon-magenta: #ff00ff;
    --bg-dark: #050505;
    --border-glow: rgba(0, 243, 255, 0.4);
    --font-main: 'Segoe UI', Roboto, sans-serif;
}

/* Navbar Container */
.cyber-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: 0 10px 20px -10px var(--border-glow);
    animation: border-flicker 3s linear infinite;
}

/* Base Button */
.cyber-btn {
    position: relative;
    padding: 12px 35px;
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
    transition: all 0.3s ease;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

/* Logic untuk membenahi Border pada Clip-path */
.nav-left {
    color: var(--neon-magenta);
    background: linear-gradient(45deg, transparent 5%, var(--neon-magenta) 5%, var(--neon-magenta) 10%, transparent 10%) bottom right;
    background-size: 15px 15px;
    background-repeat: no-repeat;
    border: 1px solid var(--neon-magenta);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.nav-right {
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

/* --- EFEK GLITCH (Mengisi span .btn-glitch di HTML) --- */
.cyber-btn:hover .btn-glitch {
    display: block;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: currentColor;
    opacity: 0.1;
    z-index: -1;
    animation: glitch-anim 0.3s infinite;
}

/* Hover States */
.nav-left:hover {
    background: var(--neon-magenta);
    color: white;
    box-shadow: 0 0 25px var(--neon-magenta);
    text-shadow: 2px 2px #000;
}

.nav-right:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 25px var(--neon-cyan);
}

/* --- ANIMASI --- */

@keyframes glitch-anim {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

@keyframes border-flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 1;
        border-bottom-color: var(--neon-cyan);
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.4;
        border-bottom-color: transparent;
    }
}

/* Tag Dekoratif (Titik kecil) */
.btn-tag {
    margin-left: 10px;
    font-size: 8px;
    opacity: 0.7;
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.2; }
    to { opacity: 1; }
}

/* Responsive Optimization */
@media (max-width: 768px) {
    .cyber-navbar {
        padding: 10px 15px;
        flex-direction: row; /* Tetap sejajar jika muat */
        gap: 10px;
    }
    
    .cyber-btn {
        padding: 10px 15px;
        font-size: 10px;
        letter-spacing: 1px;
        flex: 1;
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-e3644e8 *//* Container Utama Form */
.wpcf7 {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background-color: #fdfdfd;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Styling Label dan Teks */
.wpcf7 label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #4b3832; /* Warna cokelat tua kopi */
    font-size: 15px;
}

/* Styling Input Number */
.wpcf7 input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    margin-top: 8px;
    border: 2px solid #e0d8d0;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Penting agar tidak meluber di HP */
}

/* Efek Fokus saat Input diklik */
.wpcf7 input[type="number"]:focus {
    border-color: #8d6e63;
    outline: none;
    box-shadow: 0 0 8px rgba(141, 110, 99, 0.2);
    background-color: #faf9f8;
}

/* Styling Tombol Kirim */
.wpcf7 input[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #6d4c41;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #4b3832;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Penyesuaian Responsif untuk Smartphone */
@media (max-width: 480px) {
    .wpcf7 {
        padding: 20px;
        margin: 10px;
    }
    
    .wpcf7 label {
        font-size: 14px;
    }
    
    .wpcf7 input[type="number"] {
        padding: 10px;
    }
}

/* Hilangkan Spinner bawaan browser (Opsional, agar lebih bersih) */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Container Utama Form */
.wpcf7 {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background-color: #fdfdfd;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Styling Label dan Teks */
.wpcf7 label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #4b3832; /* Warna cokelat tua kopi */
    font-size: 15px;
}

/* Styling Input Number */
.wpcf7 input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    margin-top: 8px;
    border: 2px solid #e0d8d0;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Penting agar tidak meluber di HP */
}

/* Efek Fokus saat Input diklik */
.wpcf7 input[type="number"]:focus {
    border-color: #8d6e63;
    outline: none;
    box-shadow: 0 0 8px rgba(141, 110, 99, 0.2);
    background-color: #faf9f8;
}

/* Styling Tombol Kirim */
.wpcf7 input[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #6d4c41;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #4b3832;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Penyesuaian Responsif untuk Smartphone */
@media (max-width: 480px) {
    .wpcf7 {
        padding: 20px;
        margin: 10px;
    }
    
    .wpcf7 label {
        font-size: 14px;
    }
    
    .wpcf7 input[type="number"] {
        padding: 10px;
    }
}

/* Hilangkan Spinner bawaan browser (Opsional, agar lebih bersih) */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}+

/* Container Utama untuk Grid */
.form-container {
    display: grid;
    grid-template-columns: 1fr; /* Default 1 kolom (untuk HP) */
    gap: 15px 30px; /* Jarak antar kolom dan baris */
}

/* Pengaturan Layar Desktop (Lebar di atas 768px) */
@media (min-width: 768px) {
    .wpcf7 {
        max-width: 850px; /* Kita lebarkan sedikit containernya */
    }
    
    .form-container {
        grid-template-columns: 1fr 1fr; /* Menjadi 2 kolom sama rata */
    }
}

/* Styling tambahan agar label dan input terlihat menyatu */
.form-container label {
    margin-bottom: 0; /* Mengurangi margin bawah karena sudah diatur gap grid */
    background: #fdfdfd;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

/* Merapikan posisi tombol submit */
.submit-wrapper {
    margin-top: 25px;
    text-align: center;
}


/* Container untuk seluruh form */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Styling khusus untuk Label Dropdown */
.form-container label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

/* Styling Input Select (Dropdown) */
.wpcf7-select {
    width: 100%;
    padding: 10px 15px;
    margin-top: 5px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 16px;
    color: #444;
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-appearance: none; /* Menghilangkan style default browser */
    -moz-appearance: none;
    appearance: none;
    /* Menambahkan icon panah kustom */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

/* Efek saat Dropdown di-klik (Focus) */
.wpcf7-select:focus {
    outline: none;
    border-color: #007cba; /* Warna khas WordPress biru */
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 124, 186, 0.2);
}

/* Garis pemisah agar lebih rapi */
hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}/* End custom CSS */