*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
    font-weight: bold;
}
header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
    padding: 27px 100px;
}
header .logo{
    position: relative;
    color: #000;
    font-weight: 700;
    font-size: 2em;
    text-decoration: none;
}
header ul{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
header ul li{
    position: relative;
    list-style: none;
    margin-left: 40px;
}
header ul li::before{
   content: "";
   position: absolute;
   height: 80%;
   width: 0;
   background-color: #41B3A3;
   right: 0;
   z-index: -1;
   top: 60%;
   transition: all 0.4s;
}
header ul li::after{
   content: "";
   position: absolute;
   height: 80%;
   width: 0;
   background-color: #41B3A3;
   color: #fff;
   left: 0;
   z-index: -1;
   bottom: 0;
   transition: all 0.5s;
}
header ul li a::before{
   position: absolute;
   content: "";
   height: 80%;
   width: 0;
   background-color: #41B3A3;
   bottom: 66.66%;
   left: 0;
   transition: all 0.5s;
   z-index: -1;
}
li:hover:before,
li:hover::after,
li:hover a::before{
   width: 100%;
}
header ul li a{
    color: #000;
    text-decoration: none;
}
/*.contact{
    position: relative;
    min-height: 100vh;
    padding: 100px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(menu7.jpg);
    background-size: cover;
    background-position: center;
}*/

.contact{
    position: relative;
    min-height: 100vh;
    padding: 100px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background moved to HTML */
}

/* Create a pseudo-element to show and blur the background */
.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-url);
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
}

.container .contactInfo .box .text h3 {
    color: #030303; /* Override warna hitam yang ada */
}
.contact .content{
    max-width: 800px;
    text-align: center;
}
.contact .content h2{
    font-size: 36px;
    font-weight: 500;
    color: #000;
}
.contact .content p{
    font-weight: 300;
    color: #000;
}
.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.container .contactInfo{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.container .contactInfo .box{
    position: relative;
    padding: 20px 0;
    display: flex;
}
.container .contactInfo .box .icon{
    min-width: 60px;
    height: 60px;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;    
}
.container .contactInfo .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #000000;
    flex-direction: column;
    font-weight: 300;
}
.container .contactInfo .box .text h3{
    font-weight: 500;
    color: #000;
}
.contactForm{
    width: 40%;
    padding: 40px;
    background: #fff;
}
.contactForm h2{
    font-size: 30px;
    color: #333;
    font-weight: 500;
}
.contactForm .inputBox{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.contactForm .inputBox input, 
.contactForm .inputBox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}
.contactForm .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.4s;
    color: #666;
}
.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span{
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
}
.contactForm .inputBox input[type="submit"]{
    width: 100px;
    background: rgb(217, 255, 0);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}
@media (max-width: 991px) {
    header {
        padding: 15px 3%;
    }
    
    .contact {
        padding: 80px 3%;
    }
    
    .container {
        flex-direction: column;
    }
    
    .container .contactInfo,
    .contactForm {
        width: 100%;
        padding: 20px;
    }
    
    .container .contactInfo {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    header ul li {
        margin-left: 10px;
    }
    
    header .logo {
        font-size: 1.2em;
    }
    
    .contact .content h2 {
        font-size: 1.8em;
    }
    
    .contactForm {
        padding: 20px;
    }
    
    .contactForm h2 {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    header .logo {
        margin-bottom: 10px;
    }
    
    header ul {
        justify-content: center;
    }
    
    header ul li {
        margin: 0 5px;
    }
    
    .contact {
        padding: 100px 15px 50px;
    }
    
    .container .contactInfo .box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .container .contactInfo .box .text {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .contactForm .inputBox input[type="submit"] {
        width: 100%;
    }
}