/* KONTAK SECTION */
.kontak-section {
    padding: 5rem 0;
    min-height: 80vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.kontak-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(135deg, #f5f7fa 0%, #1e90ff 100%);
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.kontak-grid {
    gap: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.kontak-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: fit-content;
}

.kontak-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #667eea, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    background: rgba(102, 126, 234, 0.1);
}

.info-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 0.2rem;
    width: 30px;
    flex-shrink: 0;
}

.info-item span {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    font-weight: 500;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-links h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #667eea, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn i {
    font-size: 1.4rem;
    width: 30px;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #E4405F, #F77737);
    color: white;
}

.social-btn.tiktok {
    background: linear-gradient(45deg, #000000, #FF0050);
    color: white;
}

.social-btn:hover.instagram {
    border-color: #E4405F;
    background: rgba(228, 64, 95, 0.9);
}

.social-btn:hover.tiktok {
    border-color: #FF0050;
    background: rgba(255, 0, 80, 0.9);
}

/* FORM KONTAK (Bonus - bisa ditambahkan) */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    background: linear-gradient(45deg, #667eea, #1e90ff);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .kontak-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 10px;
    }

    .kontak-info {
        padding: 2rem;
    }

    .kontak-info h2 {
        font-size: 1.8rem;
        justify-content: center;
    }

    .info-item {
        padding: 1.2rem;
    }

    .social-btn {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .kontak-section {
        padding: 3rem 0;
    }

    .kontak-info {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .kontak-info h2 {
        font-size: 1.5rem;
    }

    .info-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .social-links {
        gap: 1rem;
    }
}

/* ANIMATIONS */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.kontak-info,
.social-links {
    animation: float 6s ease-in-out infinite;
}

/* MAP INTEGRATION (Opsional) */
.map-container {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}